@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@800&display=swap');
body {
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ),url("/images/2.jpeg");
    background-size: cover;

}
*{
    font-family: 'Tajawal', sans-serif;
}
.login-box {
    margin-top: 75px;
    height: auto;
    background: #14213d;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.login-key {
    height: 100px;
    font-size: 80px;
    line-height: 100px;
    background-color: #219ebc;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#message{
    color:red;
    font-size:13px;
    display:none;
}
#message h1{
    font-size:16px;

}
.login-title {
    margin-top: 15px;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: bold;
    color: #ECF0F5;
}

.login-form {
    margin-top: 25px;
    text-align: right;
}

input[type=text] {
    background-color: #14213d;
    border: none;
    border-bottom: 2px solid #219ebc;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    margin-bottom: 20px;
    padding-left: 0px;
    color: #ECF0F5;
    direction: rtl;
}

input[type=password] {
    background-color: #14213d;
    border: none;
    border-bottom: 2px solid #219ebc;
    border-top: 0px;
    border-radius: 0px;
    font-weight: bold;
    outline: 0;
    padding-left: 0px;
    margin-bottom: 20px;
    color: #ECF0F5;
    direction: rtl;
}


.form-group {
    margin-bottom: 40px;
    outline: 0px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid #0DB8DE;
    outline: 0;
    background-color: #1A2226;
    color: #ECF0F5;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

label {
    margin-bottom: 0px;
}

.form-control-label {
    font-size: 14px;
    color: #ECF0F5;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-outline-primary {
    border-color: #0DB8DE !important;
    color: #0DB8DE !important;
    border-radius: 0px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-outline-primary:hover {
    background-color: #0DB8DE !important;
    color:#fff !important;
    right: 0px;
}

.login-btm {
    float: left;
}

.login-button {
    padding-right: 0px;
    text-align: right;
    margin-bottom: 25px;
    
}
#message1{
    color:red;
    font-size:16px;
    display:none;
}
.login-text {
    text-align: left;
    padding-left: 0px;
    color: #A2A4A4;
}
.action-btn {
    background-color: #219ebc;
    border: none;
    font-size: 20px;
  
    text-transform: uppercase;
    padding: 10px 25px;
    margin-bottom:1em;
    
    color: white;
    border-radius: 0.15em;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    display: block;
    left:65%;
  }
  
  .action-btn:hover {
    background-color: #0DB8DE;
  }
  
  .action-btn:focus {
    outline: 0.05em dashed #ff6600; 
    outline-offset: 0.05em;
  }
  
  .action-btn::after {
    content: '';
    display: block;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    left: calc(50% - 0.75em);
    top: calc(50% - 0.75em);
    border: 0.15em solid transparent;
    border-right-color: white;
    border-radius: 50%;
    animation: button-anim 0.7s linear infinite;
    opacity: 0;
  }
  
  @keyframes button-anim {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .action-btn.loading {
    color: transparent;
  }
  
  .action-btn.loading::after {
    opacity: 1;
  }
  
