/* Registration Page Styles - Unique Design */

/* General Layout Styles from Original Page */
p, div, h1, h2, h3, h4, h5, h6, strong, a, legend, label, [type="submit"], button, span { 
    font-family: 'Poppins' !important; 
}
.hide { 
    display: none !important; 
}
div#_header_center-69-7 { 
    justify-content: right; 
    padding: 0 20px; 
}
.menu-item-1226 { 
    font-size: 20px; 
    font-weight: 700; 
    border-radius: 50px; 
    padding-left: 50px; 
    padding-right: 50px; 
    font-family: 'Poppins'; 
    background-color: #5050ff; 
    border: 1px solid #5050ff; 
    margin-top: 5px; 
    color: #fff !important; 
    width: max-content; 
    min-height: 55px; 
    text-align: center; 
    line-height: 45px; 
}
.menu-item-1226 a { 
    color: #fff !important; 
}

/* Added styles for the new headline section */
#section-3-920 {
    padding-top: 30px; 
    padding-bottom: 10px;
    background-color: #eff4fb;
}
#headline-17-983 {
     color: #333;
     text-align: center;
     font-size: 3.8rem;
     font-weight: 600;
     margin-top: 0;
     margin-bottom: 0;
}

/* Registration Form Specific Styles */
.registration-container {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff4fb; 
    padding: 2rem 2rem 4rem 2rem;
}
.registration-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
}
.registration-header {
    text-align: center;
    margin-bottom: 2rem;
}
.registration-header .logo {
    height: 60px;
    margin-bottom: 1.5rem;
}
.registration-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}
.registration-header p {
    color: #6c757d;
    font-size: 1rem;
}
.price-display {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}
.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5050ff;
}
.form-section {
    margin-bottom: 2rem;
}
.form-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}
.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.form-group {
    flex: 1;
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #495057;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: #5050ff;
    box-shadow: var(--shadow);
}
.form-control.error {
    border-color: #dc3545;
}
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}
.card-element {
    padding: 0.9rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: #ffffff;
    font-family: var(--font-family);
}
.submit-btn {
    width: 100%;
    background: #5050ff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.submit-btn:hover:not(:disabled) {
    background: #4040d8;
    box-shadow: var(--shadow);
}
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .registration-card {
        padding: 1.3rem;
        margin: 1rem 0;
    }
    #headline-17-983 {
        font-size: 2.4rem;
    }
    #section-3-920 {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}
