/*@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");*/

@font-face {
    font-family: myFont2;
    src: url(../fonts/Almarai-Regular.ttf);
}

@font-face {
    font-family: myFont2Bold;
    src: url(../fonts/Almarai-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
input {
    font-family: myFont2, sans-serif;
}

.container {
  width: 100vw;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
  background: rgb(65, 44, 157);
  background: linear-gradient(
    343deg,
    rgba(65, 44, 157, 1) 0%,
    rgba(70, 66, 199, 1) 35%,
    rgba(72, 109, 218, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.form-container {
  width: 85vw;
  height: 85vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items:center;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

/*.sign-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;    
}*/
.sign-in-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 20px;
    width: 100%;
}
.sign-in-form .login-logo {
  position: relative;
}
    .sign-in-form .app-logo {
        width: 250px;
        margin-bottom: 20px;
    }
.sign-in-form .login-logo .app-sim {
  position: absolute;
  bottom: 38px;
  right: 18px;
  font-size: 14px;
  color: #666;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}
.sign-in-form .title {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 10px;
}
.sign-in-form .input-field {
  width: 350px;
  height: 55px;
  background-color: #f0f0f0;
  margin: 10px 0;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
}
.sign-in-form .input-field i {
  text-align: center;
  line-height: 55px;
  color: #acacac;
  font-size: 24px;
}
.sign-in-form .input-field input {
    background: none;
    border: none;
    outline: none;
    line-height: 1;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    border-radius: 10px;
}
.sign-in-form .input-field input::placeholder {
  color: #aaa;
}
    .sign-in-form .btn-login {
        width: 350px;
        height: 55px;
        background: #486dda;
        border: none;
        outline: none;
        color: rgba(255, 255, 255, 0.8);
        font-size: 24px;
        border-radius: 15px;
        cursor: pointer;
        margin: 10px 0;
        transition: 0.5s;
        line-height: 55px;
        text-align: center;
    }
.sign-in-form .btn-login:hover {
  background: #3b59b4;
}
.sign-in-form a.my-calendar {
  color: #333;
  margin: 5px 0;
  background: #e8e8e8;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 30px;
  transition: 0.5s;
}
.sign-in-form a.my-calendar i {
  margin-left: 5px;
}
.sign-in-form a.my-calendar:hover {
  background: #cecece;
}
.panels-container {
  border-right: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panels-container img {
  width: 75%;
}
.sign-in-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 45px;
}
.sign-in-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.sign-in-footer a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  .panels-container {
    display: none;
  }
}
@media screen and (max-width: 468px) {
    .sign-in-form .btn-login {
        width:100%;
    }
    .sign-in-form .input-field {
        width: 100%;
    }
    .form-container{
        display:block;
    }
    }
input:-webkit-autofill {
    background-color:none;
}