@font-face {
  font-family: 'kurd'; /* Give your custom font a name */
  src: url('../font/arial.woff');
  font-display: block;
}

@keyframes color-change
{
    from{color: black;}
    to {color:rgb(233, 191, 7)}
}

.login-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: horizontal;
  background-color: rgb(236, 234, 240);
  text-align: center;
  border: 3px solid rgb(107,160,249);
  border-radius: 50px;
  padding: 60px 0px 6vw 0px;
  margin: auto;
  width: 95%;
  height: 60vh;
}

.logo-container {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
}


.form-container{
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: horizontal;
    margin: auto;
}

.form-container form {
    margin: 0 auto; /* This centers the form horizontally */
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

td {
    direction: rtl;
}

.button-icon {
        width: 50px;
        padding: 20px;
}

.wrong_credentials_text{
    font-family: 'kurd';
    font-size: 22px;
    color: darkred;
    
}

.reset-password-button {
    display: block;
    margin: auto;
    padding: 10px 20px; /* Adjust the padding as needed */
    background-color: #3498db; /* Add your desired background color */
    color: #fff; /* Add your desired text color */
    border: none;
    border-radius: 5px; /* Add border radius for a rounded look */
    cursor: pointer;
    font-size: 12px;
    font-family: 'kurd';
}

.reset-password-button:hover {
    background-color: #2980b9; /* Change the background color on hover */
}

#login-button
{
    background-color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
    color: rgb(68,68,68);
    margin: 20px;
    border: 1px solid rgb(107,160,249);
    font-size: 17px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
    cursor: pointer;

}

.inputs{
    padding: 5px;
    font-size: 19px;
}


#username{
    font-size: 19px;
    width: 200px;
    margin-top: 0%;
    border: 1px solid rgb(107,160,249);
    border-radius: 5px;
    cursor: pointer;
    direction: ltr;
}

#password{
    font-size: 19px;
    width: 200px;
    border: 1px solid rgb(107,160,249);
    border-radius: 5px;
    cursor: pointer;
    direction: ltr;
}

#username:hover
{
background-color: rgb(236, 234, 240);
transition: 0.5s;
}

#password:hover
{
background-color: rgb(236, 234, 240);
transition: 0.5s;
}

label{
    font-size: 17px;
    font-family: verdana;
}

#login-button:hover{
    background-color: rgb(107,160,249);
    color: white;
    border: 1px solid white;
}

.footer {
    background: rgb(236, 234, 240);
    padding: 0.5vw;
    text-align: center;
    width: 100vw;
    border-top: 1px solid rgb(107,160,249);
    border-bottom: 1px solid rgb(107,160,249);}


.eye-icon {
    cursor: pointer;
    position: absolute;
    border-radius: 10px;
    color: rgba(0, 0, 0, 0.5);
  }
  
  .eye-icon:hover{
      color: black;
  }
  
@media screen and (max-width: 1000px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }
    
    .logo-container{
        width: 70%;
        margin: 0;
        height: 70%;
    }
    
    .form-container{
        margin: 0;
        width: 100%;
    }
    
#username, #password, #login-button{
    font-size: 30px;
    width: 80%;
}


.inputs{
    padding: 5px;
    font-size: 35px;
}
}
