@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mozilla+Headline:wght@200..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
html,body{
    width: 100%;
    height: 100%;    
    background-image: image-set("https://images.unsplash.com/photo-1579546929742-63e9b6b4fc56?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
       display: flex;
    align-items: center;
    justify-content: center;
     font-family: "Poppins", sans-serif;
}
.box{
    width: 370px;
    height: 450px;
    background: #ffffff;
   border-radius: 20px;
   display: flex;
   align-items:center;
   justify-content: flex-start;
   flex-direction: column;
   gap: 10px;
   
   

}

.box .profile-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: none;
    
}

    h2 {margin-top: 20px;
      margin-bottom: 0.5rem;
      font-size: 1.6rem;
      font-weight: 600;
     font-family: "Poppins", sans-serif;
    }

    p {
      font-size: 0.9rem;
      color: #1b1717;
      margin-bottom: 1.5rem;
    }

    .input-group {
      position: relative;
      margin-bottom: 1rem;
    }

    .input-group input {
      width: 100%;
      padding: 12px 40px 12px 12px;
      border: none;
      border-radius: 10px;
      background: #2e2b26;
      color: #fff;
      outline: none;
      font-size: 0.95rem;
    }

    .input-group i {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #888;
    }

    .btn {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 10px;
      background: #4CAF50;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s ease;
    }
    
    .btn:hover {
      background: #45a049;
    }

    .message {
      margin-top: 1rem;
      font-size: 0.9rem;
      display: none;
    }

    .error {
      color: #ff6b6b;
    }

    .success {
      color: #4CAF50;
    }

    .back-link {
      display: block;
      margin-top: 2rem;
      color: #141111;
      font-size: 1rem;
      text-decoration: none;
      transition: 0.3s;
    }

    .back-link:hover {
      color: #dc6317d4;
    }

    @media (max-width: 480px) {
      .card {
        margin: 0 1rem;
        padding: 1.5rem;
      }