html, body{
    overflow-x: hidden;
}
* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
  }
  .signInScreen {
    width: 100%;
    position: relative;
  }
  .signInScreen .header__img{
    width: 120px;
    height: 120px;

  }
  .signInScreen .header__img img{
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  
  .form {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
  }
  .form h1 {
    font-size: 2.3rem;
  }
  .forEmail,
  .forPassword {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
  }
  
  .forEmail input {
    height: 100%;
    padding: 25px 9px 10px;
    width: 100%;
    color: #00000099;
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    outline: none;
  }
  
  .forEmail label {
    position: absolute;
    transform: translate(0, 15px) scale(1);
    margin-left: 10px;
    transform-origin: top left;
    transition: all 0.2s ease-in-out;
    font-size: 1.1rem;
    font-weight: 100;
    color: #00000099;
  }
  
  .forEmail:focus-within label {
    transform: translate(0, 8px) scale(0.8);
  }
  
  .email__phone:focus {
    border: 2px solid #2270be;
  }
  
  .forEmail .active__label {
    transform: translate(0, 8px) scale(0.8);
  }
  
  .forPassword input {
    height: 100%;
    padding: 25px 9px 10px;
    width: 100%;
    color: #00000099;
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    outline: none;
  }
  
  .forPassword label {
    position: absolute;
    font-size: 16px;
    transform: translate(0, 15px) scale(1);
    margin-left: 10px;
    transform-origin: top left;
    transition: all 0.2s ease-in-out;
    font-size: 1.1rem;
    font-weight: 100;
    color: #00000099;
  }
  
  .forPassword span {
    position: absolute;
    top: 20%;
    left: 75%;
    color: #0a66c4;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all ease-in-out 200ms;
    cursor: pointer;
  }
  
  .forPassword span:hover {
    background-color: lightgray;
  }
  .forPassword:focus-within label {
    transform: translate(0, 8px) scale(0.8);
  }
  
  .password:focus {
    border: 2px solid #2270be;
  }
  
  .forPassword .active__label {
    transform: translate(0, 8px) scale(0.8);
  }
  
  .forgot {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 100;
    cursor: pointer;
    letter-spacing: 1px;
  }
  .forgot:hover {
    color: #1c5b3c;
    text-decoration: underline;
  }
  
  :is(.signInBtn, .gray) {
    padding: 1.2rem 0rem;
  
    border: none;
    font-size: 1rem;
    outline: none;
    border-radius: 30px;
    transition: all 250ms ease-in-out;
  }
  .signInBtn {
    background-color: #1c5b3c;
    color: #fff;
  }
  .signInBtn:hover {
    background-color: #071b11;
  }
  .gray {
    background-color: lightgray;
    color: #000000e6;
  }

  

  .register {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 1.5rem 0;
    font-size: 1.05rem;
  }
  
  .register a {
    text-decoration: none;
    color: #1c5b3c;
  }
  
  .foot {
    display: none;
  }
  .spinner {
    animation-name: loader1;
    animation-timing-function: ease-in-out;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    margin: 0 auto;
    color: #fff;
  }
  @keyframes loader1 {
    100% {
      transform: rotate(360deg);
    }
  }
  /* Media Queries */
  
  @media (min-width: 45em) {
    .signInScreen {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
  
   
    
    .form {
      max-height: 90%;
      padding: 1rem 1rem;
      width: 55%;
      gap: 16px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
      gap: 1.5rem;
      max-width: 100%;
    }
  }
  
  @media (min-width: 1024px) {
    .signInScreen {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
   
    .section {
      box-sizing: border-box;
      margin-bottom: 30px;
    }
    .form {
      max-height: 90%;
      padding: 1rem 1rem;
      width: 25%;
      gap: 16px;
      background: #fff;
      border-radius: 8px;
  
      gap: 1.5rem;
    }
  }
  