/* Auth pages — login, registro, restablecer contraseña */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    padding: 30px 15px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo img {
    max-height: 50px;
}

.auth-panel {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.auth-panel-header {
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.auth-panel-header i {
    font-size: 18px;
    color: #005CB9;
}

.auth-panel-body {
    padding: 24px;
}

.auth-panel-footer {
    padding: 16px 24px;
    background: #fafafa;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Form fields */
.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.auth-field .input-group {
    width: 100%;
}

.auth-field .input-group-addon {
    background: #f5f7fa;
    border-color: #ddd;
    color: #888;
    width: 42px;
    text-align: center;
}

.auth-field .form-control {
    height: 42px;
    border-color: #ddd;
    box-shadow: none;
    font-size: 14px;
}

.auth-field .form-control:focus {
    border-color: #005CB9;
    box-shadow: 0 0 0 2px rgba(0, 92, 185, 0.15);
}

/* Checkbox */
.auth-check {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-check label {
    font-weight: normal;
    color: #555;
    margin: 0;
    cursor: pointer;
}

/* Buttons */
.auth-btn {
    display: inline-block;
    padding: 10px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #005CB9;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-btn:hover,
.auth-btn:focus {
    background: #004a94;
    color: #fff;
    text-decoration: none;
}

/* Error messages */
.auth-error {
    text-align: center;
    color: #d9534f;
    margin-top: 12px;
    font-size: 14px;
}

/* Info text */
.auth-info {
    padding: 24px;
    text-align: center;
    color: #555;
    line-height: 1.6;
}

.auth-info h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 16px;
}

.auth-info p {
    margin-bottom: 12px;
}

/* Links below card */
.auth-links {
    text-align: center;
    margin-top: 16px;
}

.auth-links a {
    color: #005CB9;
    font-size: 14px;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Broker logo in registration */
.auth-broker-logo {
    text-align: center;
    padding: 20px 40px;
}

.auth-broker-logo img {
    max-height: 100px;
    max-width: 100%;
}

/* Form validation errors (Symfony) */
.auth-panel .help-block,
.auth-panel .form-error-message {
    color: #d9534f;
    font-size: 13px;
    margin-top: 4px;
}

/* Password repeated field spacing */
.auth-panel .form-group {
    margin-bottom: 18px;
}

.auth-panel .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.auth-panel .form-group .form-control {
    height: 42px;
    border-color: #ddd;
    box-shadow: none;
}

.auth-panel .form-group .form-control:focus {
    border-color: #005CB9;
    box-shadow: 0 0 0 2px rgba(0, 92, 185, 0.15);
}
