@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('variables.css');
@import url('layout.css');
@import url('components.css');
@import url('tables.css');
@import url('forms.css');

.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    width: 100%;
    max-width: 400px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), #8b5cf6);
}

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

.auth-header img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.auth-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}
