* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
/*
  .logo-container {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.logo-container img {
  width: 120px;
}

*/

  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(180deg, #cc98fd, #9887f8);
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
    /* max-width: 520px; */
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .account_form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 520px;
    text-align: center;
    transform: scale(0.9);
    animation: scaleUp 0.5s ease-in-out forwards;
  }
  @keyframes scaleUp {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
  }
/*
  .logo {
    width: 85px;
    margin-bottom: 15px;
  }

  .Branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

 .Branding span {
  margin-top: 15px;
  font-size: 10px;
  color: #555;
  text-align: center;
}
*/
.branding-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;

    }

    .branding-logo img {
      width: 56px;
      height: auto;
    }

    .branding-logo h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 40px;
  background: linear-gradient(to right, #875CA8, #C38CFF);
  background-clip: text; /* ✅ Add this line for standard support */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Optional but recommended fallback */
  display: inline-block; /* ✅ Required for background-clip to apply to text */
}

 .Sarvika_logo {
  width: 90px;
  margin-top: 5px;
}
 .account_form h2 {
    margin-bottom: 8px;
    color: #333;
    font-size: 20px;
    /* font-weight: 600; */
  }
  .account_form h3 {
    margin-bottom: 28px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
  }
  .account_form span {
    font-weight: 1000;
  }
  
  .input_row {
    display: flex;
    gap: 12px;
  }
  .input_group, .input_box {
    flex: 1;
    text-align: left;
  }
  .input_group label, .input_box label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
  }
  .input_group input, .input_box input {
    width: 100%;
    height: 57px;
    border: 2px solid #DADAF2;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    font-size: 14px;
    padding: 0px 20px;
    margin-bottom: 12px;
    transition: 0.2s ease;

  }
  .input_group input:focus, .input_box input:focus {
    border-color: #875CA8;
    outline: none;
    box-shadow: 0 0 8px rgba(135, 92, 168, 0.5);
  }
  
  button {
    width: 100%;
    padding: 16px;
    border: none;
    background: #875CA8;
    color: white;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 12px;
    transition: background 0.3s, transform 0.2s;
  }
  button:hover {
    background: #be6dfc;
    transform: translateY(-2px);
  }
  
  p {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
  }
  a {
    color: #875CA8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  a:hover {
    text-decoration: underline;
    color: #6a4f9c;
  }
.Branding {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
    }

    .Branding span {
      margin-top: 15px;
      font-size: 10px;
      color: #555;
      text-align: center;
    }