    body { 
        font-family: 'Segoe UI', sans-serif !important; 
        background: #f9f9f9 !important; 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        min-height: 100vh; 
        margin: 0; 
    }
    .reg-card { 
        background: white !important; 
        padding: 40px !important; 
        border-radius: 20px !important; 
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; 
        width: 100% !important; 
        max-width: 450px !important; 
    }
    .brand-header { text-align: center; margin-bottom: 25px; }
    .brand-title { font-size: 28px; font-weight: bold; color: #2c3e50; text-decoration: none; display: block; }
    .brand-title span { color: #27ae60; }
    .brand-welcome { font-size: 16px; color: #555; margin-top: 5px; }
    
    input, select { 
        width: 100% !important; 
        padding: 12px !important; 
        margin: 8px 0 !important; 
        border: 1px solid #ddd !important; 
        border-radius: 8px !important; 
        box-sizing: border-box !important; 
        font-size: 16px !important;
        display: block !important;
    }
    
    .phone-container {
        display: flex !important;
        gap: 8px !important;
        margin: 8px 0 !important;
        align-items: center !important;
    }
    .phone-container select {
        width: 100px !important;
        margin: 0 !important;
        background-color: #f8f9fa !important;
    }
    .phone-container input {
        flex: 1 !important;
        margin: 0 !important;
    }

    .submit-btn { 
        background: #27ae60 !important; color: white !important; border: none !important; 
        padding: 16px !important; width: 100% !important; border-radius: 8px !important; 
        cursor: pointer !important; font-size: 18px !important; font-weight: bold !important;
        transition: 0.3s !important; margin-top: 15px !important;
    }
    .submit-btn:hover { background: #219150 !important; }
    .submit-btn:disabled { background: #bdc3c7 !important; cursor: not-allowed !important; }
    
    .error { 
        background-color: #fdeaea !important;
        color: #c0392b !important; 
        padding: 12px !important; 
        border-radius: 8px !important; 
        border: 1px solid #f5c6cb !important;
        font-size: 14px !important; 
        display: none; 
        text-align: center; 
        font-weight: 600 !important; 
        margin-bottom: 15px !important; 
    }
    
    label { font-weight: bold !important; color: #7f8c8d !important; font-size: 14px !important; display: block !important; margin-top: 10px !important; }

    #success-msg, #payment-processing { display: none; text-align: center; padding: 20px; }
    .success-icon { font-size: 50px; color: #27ae60; margin-bottom: 20px; }
    .success-title { font-size: 24px; color: #2c3e50; font-weight: bold; margin-bottom: 10px; }
    .success-text { color: #7f8c8d; line-height: 1.6; }

    .bank-details {
        background: #f8f9fa;
        border: 1px dashed #27ae60;
        padding: 15px;
        border-radius: 8px;
        text-align: left;
        margin: 15px 0;
        font-size: 14px;
    }
    .bank-details b { color: #2c3e50; }
    
    .login-link {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #7f8c8d;
    }
    .login-link a {
        color: #2c3e50;
        font-weight: bold;
        text-decoration: none;
    }
    .login-link a:hover {
        text-decoration: underline;
    }
    .username-highlight { color: #27ae60; font-weight: bold; }
    .price-highlight { color: #27ae60; font-weight: bold; font-size: 18px; }
    
    /* Terms and Conditions Styling */
.terms-container {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 15px 0 !important;
    font-size: 14px !important;
    color: #7f8c8d !important;
}

.terms-container input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    cursor: pointer !important;
}

.terms-container label {
    margin-top: 0 !important;
    cursor: pointer !important;
    font-weight: 500 !important;
}

.terms-container a {
    color: #27ae60 !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

.terms-container a:hover {
    text-decoration: underline !important;
}