/* Right Choice Careers V2 - Frontend Form Styles */
.rc-form-wrap { 
    background: #fff; 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); 
    font-family: var(--e-global-typography-primary-font-family), "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}
.rc-form-title { font-size: 28px; font-weight: 700; color: #004D99; margin-bottom: 5px; } /* Adjust to match global brand blue */
.rc-form-subtitle { font-size: 14px; color: #666; margin-bottom: 30px; }
.rc-section { border-top: 2px solid #f1f1f1; padding-top: 25px; margin-top: 25px; }
.rc-sec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;}
.rc-sec-header h3 { font-size: 20px; color: #cc2a36; margin: 0; } /* Adjust to match global brand red */

.rc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.rc-col { flex: 1; min-width: 200px; display: flex; flex-direction: column; }
.rc-col.fw { min-width: 100%; }

.rc-form-wrap label { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 6px; }
.rc-form-wrap input[type="text"], 
.rc-form-wrap input[type="email"], 
.rc-form-wrap input[type="tel"], 
.rc-form-wrap input[type="date"], 
.rc-form-wrap select { 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
    font-size: 15px; 
    width: 100%; 
    box-sizing: border-box; 
    font-family: inherit;
    transition: border-color 0.2s;
}
.rc-form-wrap input:focus { outline: none; border-color: #004D99; }

.rc-radio-group { display: flex; gap: 15px; align-items: center; flex-wrap: wrap;}
.rc-radio-group label { font-weight: normal; margin: 0; cursor: pointer; display: flex; align-items: center; gap: 5px;}

.rc-add-btn:hover {
    background: rgb(166, 32, 41) !important;
	color: white !important;
}

/* Dynamic Repeater Blocks */
.rc-dynamic-block { 
    background: #f9f9f9; 
    padding: 25px 20px 20px; 
    border-radius: 8px; 
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #eee;
}
.rc-dynamic-block:hover { border-color: #ddd; }

.rc-add-btn {
    background: #cc2a36;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.rc-add-btn:hover { background: #a62029; }

.rc-remove-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.rc-remove-btn:hover {
    color: initial !important;
}

.rc-submit-btn { 
    background: #cc2a36; 
    color: #fff; 
    font-size: 18px; 
    font-weight: bold; 
    padding: 18px 30px; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: background 0.3s; 
    margin-top: 30px; 
    width: 100%; 
    font-family: inherit;
}
.rc-submit-btn:hover { background: #004D99; /* Turns to Brand Blue on hover */ }
.rc-disclaimer { font-size: 13px; color: #777; background: #fff3f3; padding: 15px; border-left: 4px solid #cc2a36; margin-bottom: 20px; line-height: 1.5; }
