﻿/* ===============================
   LOGIN LAYOUT
================================= */
.login-page {
    height: calc(100vh - 60px); /* header */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   CARD
================================= */
.login-card {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   TITLE
================================= */
.login-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}

/* ===============================
   ERROR
================================= */
.login-error {
    padding: 10px;
    border-radius: var(--radius-sm);
    background: rgba(220,38,38,0.1);
    color: var(--danger);
    font-size: 14px;
    text-align: center;
}

/* ===============================
   ACTIONS
================================= */
.login-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
