﻿:root {
    --border-radius-lg: 28px;
}

.container {
    max-width: 420px;
}

.login-card {
    background-color: var(--surface-background);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

    .login-header h1 {
        font-size: 2em;
        font-weight: 700;
        color: var(--text-primary);
    }

    .login-header img {
        width: 80px;
        margin-bottom: 20px;
    }

.form-separator {
    text-align: center;
    margin: 25px 0;
    font-size: 0.9em;
    color: var(--text-secondary);
}
