/* ACRM LMS Astrologer Auth Styles - Compact Design */
.acrm-astro-auth-container {
    max-width: 440px;
    margin: 30px auto;
    background: #ffffff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.acrm-astro-auth-tabs {
    display: flex;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 16px;
}

.acrm-astro-tab-btn {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.acrm-astro-tab-btn.active {
    color: #2271b1;
    border-bottom: 3px solid #2271b1;
}

/* बॉक्स के बीच का स्पेस कम किया गया है (18px से घटाकर 10px) */
.acrm-form-group {
    margin-bottom: 10px;
}

.acrm-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
    color: #333333;
}

.acrm-form-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.acrm-form-input:focus {
    border-color: #2271b1;
    outline: none;
}

.acrm-btn-submit {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: #2271b1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.acrm-btn-submit:hover {
    background: #135e96;
}

.acrm-alert {
    padding: 10px 12px;
    border-radius: 5px;
    margin-bottom: 14px;
    font-size: 13px;
}

/* Radio Button Option Box ko Completely Hide Karne Ke Liye */
.acrm-method-toggle,
input[name="acrm_reg_type"],
label:has(input[name="acrm_reg_type"]) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.acrm-alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.acrm-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.acrm-alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }


/* Welcome Banner Styling for /plans Page */
.acrm-welcome-banner {
    max-width: 800px;
    margin: 30px auto;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border: 2px solid #e1edff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(34, 113, 177, 0.08);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.acrm-welcome-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e8f3ff;
    color: #2271b1;
    font-weight: 700;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.acrm-welcome-title {
    font-size: 24px;
    color: #1d2327;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.acrm-text-highlight {
    color: #2271b1;
    background: linear-gradient(120deg, rgba(34, 113, 177, 0.15) 0%, rgba(34, 113, 177, 0.05) 100%);
    padding: 2px 8px;
    border-radius: 4px;
}

.acrm-welcome-desc {
    font-size: 15px;
    color: #50575e;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 25px auto;
}

.acrm-welcome-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.acrm-btn-action {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.acrm-btn-discount {
    background: #d94f00;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(217, 79, 0, 0.25);
}

.acrm-btn-discount:hover {
    background: #b34100;
    transform: translateY(-2px);
}

.acrm-btn-plans {
    background: #2271b1;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.25);
}

.acrm-btn-plans:hover {
    background: #135e96;
    transform: translateY(-2px);
}