/* ============================================
   AN CRM — Estilos Login
   ============================================ */

.login-body {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrap {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 24px;
}

.login-logo img {
    height: 36px;
    width: auto;
}

.login-logo-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.login-logo-sub {
    font-size: 11px;
    color: #6b7280;
}

.login-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.login-tab {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .15s;
}

.login-tab:hover { color: #0f172a; }
.login-tab.active { color: #185FA5; border-bottom-color: #185FA5; }

.hidden { display: none !important; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: #374151; margin-bottom: 4px; }

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: border .15s;
}

input:focus {
    outline: none;
    border-color: #185FA5;
    box-shadow: 0 0 0 3px rgba(24,95,165,.08);
}
