* {
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
  }
  
  /* body {
  display: grid;
  place-items: center;
  margin: 0;
  color: #1a1a1a;
  font-family: Roboto;
  animation: gradient 10s infinite alternate linear; 
  background: linear-gradient(45deg, #565656, #20c9ae); 
  
  } */
  body {
    height: 100%;
    display: grid;
    place-items: center;
    margin: 0;
    color: #1a1a1a;
    font-family: Roboto;
    animation: gradient 10s infinite alternate linear;
    background-image: url('../../img/background3.jpeg');
    background-size: cover;
    /* Adjust as needed */
    background-position: center;
    /* Adjust as needed */
  }
  
  .login {
    background-color: rgba(255, 255, 255, 0.99);
    width: 500px;
    padding: 20px 30px 44px;
    border-radius: 22px;
    /* background: #ffffff; */
    text-align: center;
    box-shadow: 0 50px 50px rgba(137, 136, 136, 0.14);
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border: 1px solid rgb(228, 225, 225);
  }
  
  /* @media (max-width: 768px) {
    .login {
        width: 500px;
    }
  }
  
  @media (max-width: 480px) {
    .login {
      width: 500px;
    }
  } */
  
  .login>img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    padding: 2px;
  }
  
  
  
  .login>h3 {
    color: rgba(0, 0, 0, 0.38);
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 14px;
  }
  
  .login-form {
    display: grid;
    gap: 20px;
    place-items: center;
    width: 100%;
    margin: 0;
  }
  
  .textbox {
    margin-top: 20px;
    width: 100%;
    position: relative;
  } 
  
  .textbox label {
    position: absolute;
    top: 50%;
    left: 50px;
    translate: 0 -50%;
    color: rgba(0, 0, 0, 0.38);
    transition: 0.3s;
  }
  
  .textbox :is(.inp:focus, .inp:valid)~label {
    scale: 0.8;
    translate: -42px -38px;
    padding: 0 8px;
    background: #ffffff;
  }
  
  .textbox span {
    position: absolute;
    top: 50%;
    left: 16px;
    translate: 0 -50%;
    color: rgba(0, 0, 0, 0.38);
  }
  
  .login-form .inp {
    width: 100%;
    height: 50px;
    outline: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    border-radius: 8px;
  }
  
  .login-form .inp {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
    padding: 0 20px 0 50px;
    color: inherit;
  }
  
  .login-form .inp:focus {
    border-color: #8f44fd;
  }
  
  .login-form :is(.inp:focus, .inp:valid)~span {
    color: #1a1a1a;
  }
  
  .login-form a {
    color: #8f44fd;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
  }
  
  
  .type {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  
  .type span {
    margin: 0 10px;
  }
  
  .type input[type="radio"] {
    display: none;
  }
  
  .type label {
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  
  .type input[type="radio"]:checked+label {
    background-color: rgb(66, 66, 66);
    color: #fcfcfc;
    box-shadow: 1px 1px 10px gray;
  }
  
  button[type="submit"] {
    background-color: #000000;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    height: 45px;
  }
  
  button[type="submit"]:hover {
    background-color: rgb(66, 65, 65);
    color: rgb(255, 255, 255);
    border: 2px solid black;
    font-size: 17px;
  }
  
  .champs {
    width: 100%;
    margin-top: 15px;
  }
  
  
  
  @font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v167/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1n-q_4MrImHCIJIZrDBxG-ej.woff2) format('woff2');
  }
  
  .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }

 

  @media (max-width: 768px) {
    .login {
      width: 60%;
    }
  }

  @media (max-width: 480px) {
    .login {
      margin: 5px;
      width: 90%;
    }
  }