/* Portal specific UI overrides */
.portal-container { 
    max-width: 900px; 
    margin: 50px auto; 
    background: #1e293b; 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
}

.portal-input { 
    width: 100%; 
    padding: 12px; 
    margin: 10px 0; 
    border-radius: 6px; 
    border: 1px solid #334155; 
    background: #0f172a; 
    color: white; 
    box-sizing: border-box; 
    font-family: inherit; 
}

.portal-btn { 
    width: 100%; 
    padding: 12px; 
    background: #3b82f6; 
    border: none; 
    color: white; 
    font-weight: bold; 
    border-radius: 6px; 
    cursor: pointer; 
    transition: background 0.2s; 
}

.portal-btn:hover { 
    background: #2563eb; 
}

.auth-toggle { 
    color: #3b82f6; 
    cursor: pointer; 
    font-size: 14px; 
    text-decoration: underline; 
    background: none; 
    border: none; 
    padding: 0; 
    margin-top: 15px; 
    display: block; 
    text-align: center; 
    width: 100%; 
}

.terms-box { 
    width: 100%; 
    height: 120px; 
    padding: 10px; 
    margin: 10px 0; 
    border-radius: 6px; 
    border: 1px solid #334155; 
    background: #0f172a; 
    color: #94a3b8; 
    font-size: 12px; 
    overflow-y: scroll; 
    box-sizing: border-box; 
}

.checkbox-group { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin: 10px 0; 
    color: #e2e8f0; 
    font-size: 14px; 
}

#response-box { 
    margin-top: 20px; 
    padding: 15px; 
    background: #0f172a; 
    border-left: 4px solid #3b82f6; 
    display: none; 
    white-space: pre-wrap; 
    line-height: 1.5; 
    border-radius: 6px; 
}