/* Manus Register Form Styles - Based on register-en.php */
* { box-sizing: border-box; margin: 0; padding: 0; }

.manus-register-wrapper { max-width: 1200px; width: 100%; margin: 30px auto 0; }

.manus-page { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
}

.manus-form-card { 
    background: #262628; 
    border-radius: 12px; 
    padding: 28px; 
    box-shadow: 0 12px 30px rgba(0,0,0,.35); 
}

.manus-brand { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 0; 
}

.manus-brand-logo { 
    display: inline-flex; 
    align-items: center; 
}

.manus-brand-logo img { 
    height: 46px; 
    width: auto; 
    display: block; 
}

.manus-brand-title { 
    font-weight: 800; 
    font-size: 22px; 
    letter-spacing: .3px; 
}

.manus-program-title { 
    margin-top: 0; 
    margin-bottom: 26px; 
    line-height: 1.25; 
}

.manus-program-title h1 { 
    font-size: 28px; 
    font-weight: 700; 
    margin-top: 16px !important; 
    margin-bottom: 0 !important; 
    color: #eee;
}

.manus-program-title h2 { 
    margin-top: 0 !important; 
    font-size: 22px; 
    color: #ff7200; 
    font-weight: 700; 
}

.manus-google-btn { 
    width: 100%; 
    height: 44px; 
    border: 0; 
    border-radius: 6px; 
    background: #f5f5f5; 
    color: #111; 
    font-weight: 600; 
    cursor: pointer; 
}

.manus-or-sep { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: #aaa; 
    margin: 18px 0 8px; 
    font-weight: 600; 
    justify-content: center; 
}

.manus-or-sep::before, 
.manus-or-sep::after { 
    content: ""; 
    flex: 1; 
    height: 1px; 
    background: #3a3a3d; 
}

.manus-form { 
    margin-top: 10px; 
    display: grid; 
    gap: 12px; 
}

.manus-field { 
    display: grid; 
    gap: 6px; 
}

.manus-field label { 
    font-size: 13px; 
    color: #cfcfcf; 
}

.manus-input { 
    height: 44px; 
    border-radius: 6px; 
    border: 1px solid #3a3a3d; 
    background: #1f1f21; 
    color: #000000; 
    padding: 0 12px; 
    outline: none; 
}

.manus-select { 
    height: 44px; 
    border-radius: 6px; 
    border: 1px solid #3a3a3d; 
    background: #ffffff; 
    color: #000000; 
    padding: 0 12px; 
    outline: none; 
}

.manus-select { 
    appearance: none; 
}

.manus-select:disabled { 
    opacity: .6; 
    cursor: not-allowed; 
}

.manus-captcha { 
    height: 78px; 
    border-radius: 8px; 
    border: 1px dashed #3a3a3d; 
    background: #1b1b1d; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #9a9aa0; 
    font-size: 14px; 
}

.manus-submit { 
    margin-top: 6px; 
    height: 46px; 
    border-radius: 999px; 
    border: 0; 
    background: #ff7200; 
    color: #fff; 
    font-weight: 800; 
    cursor: pointer; 
    letter-spacing: .2px; 
}

.manus-signin-link { 
    margin-top: 10px; 
    text-align: center; 
    color: #cfcfcf; 
    font-size: 14px; 
}

.manus-signin-link a { 
    color: #ff7200; 
    text-decoration: none; 
}

.manus-info-card { 
    background: #262628; 
    border-radius: 12px; 
    padding: 28px; 
    box-shadow: 0 12px 30px rgba(0,0,0,.35); 
}

.manus-info-card h3 { 
    color: #ff7200; 
    margin-bottom: 12px; 
    font-size: 26px; 
    font-weight: 800; 
}

.manus-info-section { 
    margin-top: 16px; 
}

.manus-info-section h4 { 
    color: #ff7200; 
    margin-bottom: 10px; 
    font-size: 20px; 
    font-weight: 700; 
    margin-left: 0; 
}

.manus-info-section ul { 
    margin: 6px 0 0 24px; 
    padding-left: 0; 
    display: grid; 
    gap: 10px; 
    list-style: disc outside; 
}

ul.manus-info-section { 
    margin: 6px 0 0 24px; 
    padding-left: 0; 
    list-style: disc outside; 
    display: grid; 
    gap: 10px; 
}

.manus-info-section li, 
ul.manus-info-section li { 
    color: #d9d9de; 
    font-size: 16px; 
    line-height: 1.6; 
}

.manus-form-response { 
    margin-top: 16px; 
    padding: 20px; 
    border-radius: 12px; 
    font-size: 15px; 
    display: none; 
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.manus-form-response.success { 
    display: block; 
    background: linear-gradient(135deg, #d4edda, #c3e6cb); 
    border: 2px solid #28a745; 
    color: #155724; 
}

.manus-form-response.error { 
    display: block; 
    background: linear-gradient(135deg, #f8d7da, #f5c6cb); 
    border: 2px solid #dc3545; 
    color: #721c24; 
}

.manus-response-title { 
    font-weight: 800; 
    margin-bottom: 12px; 
    font-size: 18px; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.manus-form-response p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.manus-link { 
    color: #ff7200; 
    text-decoration: none; 
}

@media (max-width: 960px) { 
    .manus-page { 
        grid-template-columns: 1fr; 
        max-width: 720px; 
    } 
}