/* auth_styles.css - Componente de Estilos de Autenticación RMK */

.login-bg {
    background: linear-gradient(135deg, #2A3F54 0%, #34495e 100%);
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

body.auth-body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color, #f8f9fa);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-container {
    position: relative;
    z-index: 1;
}

.auth-card {
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.hidden {
    display: none !important;
}

/* Input Groups & Forms */
.login-input-group .form-control,
.login-input-group .input-group-text,
.login-input-group .btn {
    height: 38px;
    line-height: 1.5;
}

.login-input-group .form-control {
    border-radius: 0;
    padding-left: 10px !important;
    font-size: 12px;
}

.login-input-group .input-group-text {
    border-radius: 0.375rem 0 0 0.375rem;
}

.login-input-group .btn {
    border-radius: 0 0.375rem 0.375rem 0;
    border-color: #dee2e6 !important;
}

.login-input-group .btn:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.login-input-group .form-control:focus,
.login-input-group .btn:focus,
.login-input-group .btn:active {
    box-shadow: none !important;
    outline: none !important;
    border-color: #ced4da;
}

.form-check-input:focus {
    box-shadow: none !important;
    border-color: #ced4da !important;
}

.form-check-input:checked {
    background-color: #1ABB9C !important;
    border-color: #1ABB9C !important;
}

/* Buttons */
.btn-primary {
    background-color: #1ABB9C !important;
    border-color: #1ABB9C !important;
}

.btn-primary:hover {
    background-color: #169F85 !important;
    border-color: #169F85 !important;
}

/* Brand Typography & Layout */
.auth-brand-title {
    letter-spacing: -0.5px;
    color: #2A3F54;
    font-weight: bold;
    margin-bottom: 0;
}

.auth-brand-subtitle {
    font-size: 0.85em;
    color: #73879C;
    font-weight: 300;
}

.auth-brand-name {
    color: #1ABB9C;
}

.auth-section-title {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #73879C;
    font-weight: bold;
    margin-bottom: 0;
}

.auth-accent-line {
    width: 40px;
    height: 3px;
    background: #1ABB9C;
    border-radius: 2px;
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}

.auth-welcome-text {
    font-size: 11px;
    line-height: 1.4;
    color: #6c757d;
}

.auth-input-label {
    font-size: 11px;
    margin-bottom: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.auth-link {
    font-size: 11px;
    color: #1ABB9C;
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    color: #169F85;
}

.auth-footer-text {
    font-size: 10px;
    color: #6c757d;
}

.auth-alert-custom {
    background-color: #fce4e4;
    color: #c0392b;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 11px;
    font-weight: 500;
}

/* Recovery Specific */
.recovery-icon {
    color: #1ABB9C;
}

.recovery-title {
    color: #2A3F54;
    font-size: 14px;
    font-weight: bold;
}

/* Additional Utilities for Architecture Compliance */
.auth-alert-error {
    background-color: #fce4e4 !important;
    color: #c0392b !important;
}

.auth-alert-small-text {
    font-size: 11px !important;
    font-weight: 500 !important;
}

.auth-input-small {
    font-size: 12px !important;
}

.auth-input-password-toggle {
    border-color: #dee2e6 !important;
    border-left: none !important;
    background: #fff !important;
}

.auth-check-small {
    width: 14px !important;
    height: 14px !important;
    cursor: pointer !important;
}

.auth-check-label {
    font-size: 11px !important;
    cursor: pointer !important;
    user-select: none !important;
}

.auth-btn-text-13 {
    font-size: 13px !important;
}

.auth-footer-link-home {
    color: #1ABB9C !important;
    font-size: 11px !important;
}

.recovery-desc {
    max-width: 250px !important;
}

.support-link {
    color: #73879C !important;
}

.auth-footer-copyright {
    font-size: 11.5px !important;
}

.auth-match-msg {
    font-size: 10px !important;
    min-height: 12px !important;
}

.auth-check-medium {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer !important;
}

.auth-check-label-medium {
    font-size: 11.5px !important;
    cursor: pointer !important;
    user-select: none !important;
}

.no-radius-right {
    border-right: none !important;
}

.fs-10 {
    font-size: 11px !important;
}