* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    min-height: 100vh;
    background: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
  }
  
  .modal {
    width: 600px;
    height: 650px;
    background: white;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
  }
  
  .close {
    position: absolute;
    top: 14px;
    left: 14px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
  }
  
  .close svg {
    width: 22px;
    height: 22px;
    fill: rgb(15, 20, 25);
  }
  
  .logo {
    margin-top: 2px;
    margin-bottom: 28px;
  }
  
  .logo svg {
    width: 30px;
    height: 30px;
    fill: black;
  }
  
  h1 {
    font-size: 31px;
    font-weight: 700;
    color: rgb(15, 20, 25);
    margin-bottom: 32px;
  }
  
  .social-btn,
  .next-btn,
  .forgot-btn {
    width: 300px;
    height: 40px;
    border-radius: 9999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-btn {
    border: 1px solid rgb(207, 217, 222);
    background: white;
    font-size: 15px;
    font-weight: 400;
    color: rgb(15, 20, 25);
    margin-bottom: 16px;
  }
  
  .google-logo,
  .apple-logo {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  
  .apple-logo {
    fill: black;
  }
  
  .separator {
    width: 300px;
    margin: 2px 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .separator span {
    flex: 1;
    height: 1px;
    background: rgb(239, 243, 244);
  }
  
  .separator p {
    font-size: 15px;
    color: rgb(15, 20, 25);
  }
  
  input {
    width: 300px;
    height: 56px;
    border: 1px solid rgb(207, 217, 222);
    border-radius: 4px;
    font-size: 17px;
    color: rgb(15, 20, 25);
    padding: 0 12px;
    margin-bottom: 24px;
  }
  
  input::placeholder {
    color: rgb(83, 100, 113);
  }
  
  .next-btn {
    background: rgb(15, 20, 25);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .forgot-btn {
    background: white;
    color: rgb(15, 20, 25);
    border: 1px solid rgb(207, 217, 222);
    font-size: 15px;
    font-weight: 700;
  }
  
  .signup {
    margin-top: 55px;
    font-size: 15px;
    color: rgb(83, 100, 113);
  }
  
  .signup a {
    color: rgb(29, 155, 240);
    text-decoration: none;
  }
  
  /* VERSION TÉLÉPHONE */
@media screen and (max-width: 600px) {
  body {
    background: black;
    padding-top: 0;
    overflow-y: auto;
  }

  .modal {
    width: 100%;
    min-height: 100vh;
    background: black;
    border-radius: 0;
    padding: 30px 48px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .close {
    top: 35px;
    left: 30px;
  }

  .close svg {
    width: 22px;
    height: 22px;
    fill: white;
  }

  .logo {
    margin-bottom: 65px;
  }

  .logo svg {
    width: 28px;
    height: 28px;
    fill: white;
  }

  h1 {
    width: 100%;
    color: white;
    font-size: 27px;
    margin-bottom: 38px;
  }

  .social-btn,
  .next-btn,
  .forgot-btn,
  input,
  .separator {
    width: 100%;
  }

  .social-btn {
    height: 44px;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .google-logo,
  .apple-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .separator {
    margin: -4px 0 18px;
  }

  .separator p {
    color: white;
    font-size: 18px;
  }

  .separator span {
    background: #2f3336;
  }

  input {
    height: 58px;
    background: black;
    color: white;
    border: 1px solid #333639;
    font-size: 18px;
    margin-bottom: 32px;
  }

  input::placeholder {
    color: #71767b;
  }

  .next-btn {
    height: 44px;
    background: #eff3f4;
    color: black;
    font-size: 17px;
    margin-bottom: 28px;
  }

  .forgot-btn {
    height: 44px;
    background: black;
    color: white;
    border: 1px solid #536471;
    font-size: 17px;
  }

  .signup {
    width: 100%;
    margin-top: 40px;
    color: #71767b;
    font-size: 13px;
  }
  
  .password-content {
  width: 350px;
  display: flex;
  flex-direction: column;
}

.password-content h1 {
  font-size: 23px;
  margin-bottom: 35px;
}

.user-box {
  width: 100% !important;

  background-color: #1A1A1A !important;

  border: 1px solid #2f3336;
  border-radius: 4px;

  padding: 10px;

  margin-bottom: 25px;

  height: 56px;

  font-size: 17px;
}

.user-box span {
  font-size: 13px;
  color: #8b98a5;
}

.user-box p {
  font-size: 18px;
  color: #8b98a5;
}

.forgot-link {
  color: #1d9bf0;
  text-decoration: none;
  font-size: 14px;
  margin-top: -18px;
}

.login-btn {
  width: 100%;
  height: 50px;
  margin-top: 210px;
  border: none;
  border-radius: 9999px;
  background: #AD8C8C;
  color: black;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}
}
.password-content {
  width: 100%;
}

.password-content h1 {
  font-size: 35pxpx;
  margin-bottom: 35px;
}

.user-box {
  background: #f7f9f9;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 25px;
  width: 300px;
  height: 56px;
  font-size: 17px;
}

.user-box span {
  font-size: 13px;
  color: #8b98a5;
}

.user-box p {
  font-size: 18px;
  color: #8b98a5;
}

.forgot-link {
  color: #1d9bf0;
  text-decoration: none;
  font-size: 14px;
  margin-top: -18px;
}

.login-btn {
  width: 100%;
  height: 50px;
  margin-top: 270px;
  border: none;
  border-radius: 9999px;
  background: #AD8C8C;
  color: black;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}