.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    margin-top: 34%;
    font-family: 'Inter';
}

h2 {
  color: #2d3748;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  font-family: 'Inter';
}

.form-group {
    margin-bottom: 2px;
}

label {
    display: block;
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter';
}

input, select {
    width: 100%;
    padding: 8px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    color: #2d3748;
    background: white;
    transition: all 0.3s 
ease;
    outline: none;
    font-family: 'Inter';
}

input:focus, select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input::placeholder {
    color: #a0aec0;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    font-family: 'Inter';
}

#SubmitButton {
    width: 100%;
    padding: 16px;
    background-color: #2c9e35;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter';
}

#SubmitButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

#SubmitButton:active {
    transform: translateY(0);
}

.mandatory{
    color:red;
    font-weight: bold;
}


/*My Change*/
.alert-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .alert-mask.active {
    opacity: 1;
    visibility: visible;
  }
  
  .alert-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .alert-mask.active .alert-container {
    transform: scale(1) translateY(0);
  }
  
  .alert-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 100%;
    animation: gradientMove 3s ease-in-out infinite;
  }

  #otpInput{
    width: 200PX !important;
  }
  
  @keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .alert-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .alert-icon svg {
    width: 32px;
    height: 32px;
    color: white;
  }
  
  .alert-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  
  .alert-message {
    font-size: 19px;
    color: #4a5568;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight:400
  }
  
  .alert-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
  }
  
  .btns {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    
  }
  
  .NPSSPANMASK{
    color: gray;
    font-size: 29px;
    margin-left: 101%;
  }
  
  .NPSSPANMASK:hover{
    cursor: pointer;
    color: black;
  }
  
  .btns::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
  }
  
  .btns:active::before {
    width: 300px;
    height: 300px;
  }
  
  .btn-cancel {
    background: rgba(74, 85, 104, 0.1);
    color: #4a5568;
    border: 2px solid rgba(74, 85, 104, 0.2);
  }
  
  .btn-cancel:hover {
    background: rgba(74, 85, 104, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.15);
  }
  
  .btn-confirm {
    background: linear-gradient(135deg, #4596bb, #44a08d);
    color: white;
    box-shadow: 0 8px 25px rgb(88 171 165 / 30%);
  }
  
  .btn-confirm:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
    color: black;
  }
  
  .floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
  }
  
  .particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 20%; animation-delay: 0s; }
  .particle:nth-child(2) { width: 12px; height: 12px; top: 60%; left: 80%; animation-delay: 1s; }
  .particle:nth-child(3) { width: 6px; height: 6px; top: 80%; left: 40%; animation-delay: 2s; }
  .particle:nth-child(4) { width: 10px; height: 10px; top: 30%; left: 70%; animation-delay: 3s; }
  
  @media (max-width: 480px) {
    .alert-container {
        padding: 32px 24px;
        margin: 20px;
    }
    
    .alert-buttons {
        flex-direction: column;
    }
    
    .btn-secondary {
        width: 100%;
    }
  }

  