@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'inter',sans-serif;
}

body.starling-eye-login-wrapper {
  align-items: center;
  justify-content: center;
  background-image: url(../images/bg-Img.jpg) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  font-family: 'inter',sans-serif !important;
}

body.starling-eye-login-wrapper .logo{
    margin-top:20px;
    text-align: center;
}
body.starling-eye-login-wrapper .logo img{
    height: 90px;
    width: 300px;
}

body.starling-eye-login-wrapper section {
    width: 420px;

    position: relative;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(5px);
   /* display: flex;
    justify-content: center;*/
    align-items: center;
    padding:20px 40px 0 40px;
    margin: 20px auto;
}
body.starling-eye-login-wrapper form{
    width: 310px;
}

body.starling-eye-login-wrapper h1 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
}
body.starling-eye-login-wrapper select {
    -webkit-appearance: none;
    border: 0;
    color: #ffffff;
    width: 100%;
    background: transparent url(../images/Menu-Screen/Down.png) no-repeat  97%  30px  !important;
    height: 60px;
    font-size: 1rem;
}
body.starling-eye-login-wrapper select option {
    color:#333;
    padding:5px;
}

body.starling-eye-login-wrapper .inputbox {
    position: relative;
    margin: 10px 0;
    border-bottom: 2px solid #fff;
}





body.starling-eye-login-wrapper .inputbox input {
    height: 60px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 17px 35px 0 5px;
    color: #fff;
}

body.starling-eye-login-wrapper .inputbox input ~ label {
    position: absolute;
    /*top: 50%;*/
    left: 5px;
    transform: translateY(-5%);
    color: #fff;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}
/*body.starling-eye-login-wrapper .inputbox input:focus ~ label, 
body.starling-eye-login-wrapper .inputbox input:valid ~ label {
    top: 0px;
}*/


body.starling-eye-login-wrapper .inputbox img {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2rem;
    top: 30px;
}



body.starling-eye-login-wrapper .forget {
    margin: 25px 0;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    justify-content: center;
}

body.starling-eye-login-wrapper .forget  input {
    margin: 0 5px 0 0;
}

body.starling-eye-login-wrapper .forget label {
    margin: 0;
}

body.starling-eye-login-wrapper .forget label a {
    color: #fff;
    text-decoration: none;
    float: right;
    margin: 0 0 0 10px;
}

body.starling-eye-login-wrapper .forget label a:hover {
    text-decoration: underline;
}

body.starling-eye-login-wrapper .forget .loginForgotPassword {
    margin: 0 0 0 10px;
}

body.starling-eye-login-wrapper .forget .loginForgotPassword a {
    color: #fff;
    text-decoration: none;
}


body.starling-eye-login-wrapper button {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

body.starling-eye-login-wrapper .register {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    margin:15px 0 10px 10px;
}

body.starling-eye-login-wrapper .register p a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

body.starling-eye-login-wrapper .register p a:hover {
    text-decoration: underline;
}
#errorDiv {
   color: #0c94ec!important;
    text-align: center;
    font-size:14px;
    margin: 15px 0 0 0;
    display: block;
}

body.starling-eye-login-wrapper input:-webkit-autofill,
body.starling-eye-login-wrapper input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}
body.starling-eye-login-wrapper input[data-autocompleted] {
    background-color: transparent !important;
}

body.starling-eye-login-wrapper .modal-header .btn-close{width: 1em; height: 1em;}
body.starling-eye-login-wrapper .btn-close:focus{box-shadow: none;}
body.starling-eye-login-wrapper .modal-header{border: 0;}
body.starling-eye-login-wrapper a{color: unset; text-decoration: none;}

body.starling-eye-login-wrapper .app-btn{display: flex; justify-content: space-between;}
body.starling-eye-login-wrapper a{max-width: 48%;}

body.starling-eye-login-wrapper .modal {
  position: fixed;
  top: 0px;
  pointer-events: none;
  left: 0px;
 /* background: rgba(51, 51, 51, 0.9);*/
  width: 100vw;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  transition: 0.3s;
}
body.starling-eye-login-wrapper .modal.active {
  opacity: 1;
  pointer-events: auto;
}
body.starling-eye-login-wrapper .modal.active .box {
  top: 50%;
}
body.starling-eye-login-wrapper .modal#success h1 {
  font-size: 1.5em;
}
body.starling-eye-login-wrapper .modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color:#000000;
  font-size: 27px;
  opacity: 0.5;
}
body.starling-eye-login-wrapper .modal .box {
  background: #fff;
  display: block;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  width: 500px;
}
body.starling-eye-login-wrapper .modal .box h5 {
    font-size: 1.25rem;
     font-weight: 500;
    margin: 1.5em 0 1em 0;
}
body.starling-eye-login-wrapper .register p {
    margin-top: 0;
    margin-bottom: 1rem;
}
body.starling-eye-login-wrapper .app-btn a {
    margin: 0 5px;
}

body.starling-eye-login-wrapper img {
    max-width:100%;
}


body.starling-eye-login-wrapper.arabic-language-wrapper select {
    padding: 10px 0 0 0;
    background-position:  3% 30px !important;
    text-align: right;
}
body.starling-eye-login-wrapper.arabic-language-wrapper .inputbox {
    text-align: right;
}
body.starling-eye-login-wrapper.arabic-language-wrapper .inputbox input ~ label {
    left: auto;
    right: 0;
}
body.starling-eye-login-wrapper.arabic-language-wrapper .inputbox img {
    left: 8px;
    right: auto;
}
body.starling-eye-login-wrapper.arabic-language-wrapper .inputbox input {
    padding: 17px 0 0 5px;
    text-align: right;
}

.arabic-language-wrapper .p-icons-top {
    text-align: left;
}