.container {
    max-width: 800px;
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 40px auto;
  }
  
  .container header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  .container form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  
  .container .input-box {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
  }
  
  .container label {
    font-weight: 500;
    margin-bottom: 6px;
  }
  
  .container input,
  .container select {
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
  }
  
  .container .gender-box {
    margin: 20px 0;
  }
  
  .container .gender-box h3 {
    margin-bottom: 10px;
  }
  
  .container .gender-option {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .container .gender {
    display: flex;
    align-items: center;
  }
  
  .container .gender input {
    margin-right: 5px;
  }
  
  .container .blinking-text {
    color: #006400;
    font-weight: bold;
    animation: blink 1s infinite;
    cursor: pointer;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .container .upi {
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
    display: block;
    border-radius: 10px;
  }
  
  .container button {
    width: 100%;
    padding: 12px;
    background: #2e8b57;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .container button:hover {
    background: #246b45;
  }
  
  .container h6 {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #444;
  }
  
  @media (max-width: 768px) {
    .container .row {
      flex-direction: column;
    }
  
    .container .input-box {
      flex: 1 1 100%;
    }
  
    .container .gender-option {
      flex-direction: column;
    }
  }
  .upi-button {
    display: block;
    text-align: center;
    margin: 15px 0;
    text-decoration: none;
  }
  
  .upi-button button {
    background-color:  #2e8b57;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .upi-button button:hover {
    background-color:  #2e8b57;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }

  .modal-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
  }

  .close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close-button:hover {
    color: black;
  }
  .password-wrapper i {
    cursor: pointer;
  }
  