/* ==========================================================================
   LOCADORA ENTERPRISE - LOGIN PORTAL DESIGN
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

body.login-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(1000px 600px at 50% 10%, rgba(2, 132, 199, 0.12), transparent 70%),
                radial-gradient(800px 500px at 10% 90%, rgba(217, 119, 6, 0.08), transparent 60%),
                linear-gradient(135deg, #0B0F19 0%, #0F172A 50%, #1E293B 100%);
    color: #0F172A;
    -webkit-font-smoothing: antialiased;
}

.login-card {
    width: 100%;
    max-width: 440px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 44px 38px 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: loginCardRise 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0284C7 0%, #0369A1 50%, #D97706 100%);
}

@keyframes loginCardRise {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-logo {
    text-align: center;
    margin-bottom: 28px;
}

.login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-logo h1 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.login-logo p {
    margin: 6px 0 0;
    color: #64748B;
    font-size: 0.80rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.input-group-custom {
    display: flex;
    align-items: center;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    background: #F8FAFC;
    transition: all 0.18s ease;
}

.input-group-custom:focus-within {
    border-color: #0284C7;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: #94A3B8;
    flex-shrink: 0;
}

.input-icon svg {
    width: 18px;
    height: 18px;
}

.input-group-custom input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 14px 12px 0;
    font-family: inherit;
    font-size: 0.85rem;
    color: #0F172A;
}

.input-group-custom input::placeholder {
    color: #94A3B8;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 24px;
    font-size: 0.78rem;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    cursor: pointer;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.form-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    accent-color: #0284C7;
    cursor: pointer;
}

.form-options a {
    color: #0284C7;
    font-weight: 600;
    text-decoration: none;
}
.form-options a:hover {
    color: #0369A1;
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.32);
    transition: all 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0369A1 0%, #075985 100%);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.42);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.login-badge-hint {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #166534;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.login-badge-hint code {
    background: #DCFCE7;
    color: #14532D;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.login-footer {
    margin: 22px 0 0;
    color: #94A3B8;
    font-size: 0.70rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
