/* Popup Styles */
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 55, 72, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: #ffffff;
    width: 400px;
    max-width: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.popup-header {
    background: linear-gradient(135deg, #2a1454, #8750f7);
    padding: 24px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
}

.popup-body {
    padding: 32px;
}

.popup-subtitle {
    color: #2a1454;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-text {
    font-size: 1rem;
    color: #2a1454;
    margin-bottom: 16px;
    line-height: 1.6;
}

.popup-link {
    color: #2a1454;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2a1454;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#submitForm, #closePopup {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2a1454, #8750f7);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#closePopup {
    margin-top: 24px;
}

#closePopup:disabled {
    background-color: #cbd5e0;
    color: #2a1454;
    cursor: not-allowed;
}

.success-message {
    color: #48bb78;
    font-weight: 600;
    margin-top: 16px;
    display: none;
    text-align: center;
}