:root {
    --primary: #022340;
    --secondary: #022859;
    --accent: #f2b90a;
    --light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --bg-body: #f4f4f4;
    --transition: all 0.3s ease;
    --success: #28a745;
    --danger: #dc3545;
}

body { 
    background-color: var(--bg-body); 
    font-family: 'Segoe UI', sans-serif; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.auth-container {
    max-width: 450px;
    width: 90%;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top: 6px solid var(--accent);
}

.auth-header h2 { color: var(--primary); font-weight: 800; margin-bottom: 5px; }

.form-control {
    width: 100%;
    background-color: var(--light);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    box-sizing: border-box; /* Crucial para que no se salga del contenedor */
}

.btn-reppss {
    background-color: var(--primary);
    color: var(--white);
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reppss:disabled { background-color: #ccc; cursor: not-allowed; }

.btn-reppss:hover:not(:disabled) {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.captcha-container {
    background: #eeeeee;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    margin-top: 10px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 35px;
    height: 35px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--primary);
}