body {
    font-family:"Droid Arabic Kufi";
    background: linear-gradient(135deg, #181948, #1D2F3F); /* Blue to Dark Blue */
    margin: 0;
    min-height: 100vh;
	  line-height: 1.6;
  direction: rtl;
}
.title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}
.slogan {
  font-size: 13px;;
  font-weight: 700;
  color: white;
}
.subtitle {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}
.container {
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: #fff;
    width: 300px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.icon-box {
    text-align: center;
    margin-bottom: 15px;
}

.icon-box img {
    width: 80px;  /* Adjust size of the image */
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px; /* Optional for spacing */
}

h2 {
    margin-bottom:15px;
    text-align: center;
}

label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

input {
    width: 90%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

button {
    width: 90%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
	    font-family:"Droid Arabic Kufi";
}

button:hover {
    background: #0b5dd8;
}

.links {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.links a {
    color: #0d6efd;
    display: block;
    margin-top: 5px;
    text-decoration: none;
}
.error-msg {
	  margin-top: 20px;
    background-color: #FEF2F2;
    border-radius: 6px;
	  border: 1px solid #DF3636;
    padding: 10px 15px;
    color: #DF3636;
    font-size: 13px;
   
    display: none;
    align-items: center;
  }
  .error-msg svg {
    margin-right: 8px;
    fill: #dc3545;
    width: 16px;
    height: 16px;
  }
