
    body {
      font-family: poppins;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      background: linear-gradient(135deg, #fff5e4, #ffc4c4, #ee6983, #850e35 );
    }

    .container {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      width: 350px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      text-align: center;
      transition: all 0.4s ease;
    }

    h2 {
      margin-bottom: 10px;
      color: #333;
    }

    input {
      width: 93%;
      padding: 0.75rem;
      margin: 0.5rem 0;
      border-radius: 10px;
      border: 1px solid #ccc;
      font-size: 1rem;
      outline: none;
      transition: border 0.3s ease;
    }

    input:focus {
      border-color: #6a11cb;
    }

    button {
      font-family: poppins;
      width: 100%;
      padding: 0.75rem;
      border: none;
      border-radius: 10px;
      background-color: #850e35;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    button:hover {
      transform: translateY(-2px);
    }

    button > a {
      color: inherit;
      text-decoration: none;
    }

    .toggle-link {
      margin-top: 1rem;
      color: #2575fc;
      cursor: pointer;
      display: inline-block;
      font-size: 0.9rem;
    }

    .fade {
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .fade.active {
      opacity: 1;
      transform: scale(1);
    }

    .avater-container {
      display: flex;
      justify-content: center;
    }

    .user-avatar {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 10px;
      height: 100px;
      width: 100px;
      border-radius: 50%;
      background-color: black;
    }