/* Make Send Verification Email button visually prominent */
#sendVerificationBtn {
    font-weight: bold;
    font-size: 1.15rem;
    background-color: #0d6efd !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 0 0 0 rgba(13,110,253,0.7);
    transition: box-shadow 0.3s;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(13,110,253,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(13,110,253,0); }
    100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

.verification-status {
    margin-top: 8px;
    font-size: 0.875rem;
}

.verification-success {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.1);
}

.verification-error {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.1);
}

.password-strength-meter {
    height: 4px;
    margin-top: 8px;
    background: #eee;
    transition: all 0.3s ease;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
}

.warning-text {
    color: #ffc107;
    font-weight: bold;
}

.discord-link-section {
    margin: 20px 0;
    padding: 15px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
}

.discord-linked {
    color: #5865f2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-discord {
    background-color: #5865f2;
}

/* Custom Success Modal */
.signup-success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.signup-success-overlay.show {
    display: flex !important;
}

.signup-success-modal {
    background: rgba(33, 37, 41, 0.98);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.3);
    animation: signupModalSlideIn 0.3s ease-out;
}

@keyframes signupModalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to   { opacity: 1; transform: translateY(0); }
}

.signup-success-modal h3 {
    color: #28a745;
    margin: 0 0 1.5rem 0;
    text-align: center;
    font-size: 1.5rem;
}

.signup-success-modal .credential-row {
    background: rgba(45, 50, 55, 0.5);
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border-left: 3px solid #28a745;
    color: #fff;
}

.signup-success-modal .credential-row strong {
    color: #adb5bd;
    margin-right: 0.5rem;
}

.signup-success-modal .success-note {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

.signup-success-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    transition: background 0.3s ease;
}

.signup-success-btn:hover {
    background: #218838;
}

