body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.page-logo {
    position: fixed;
    top: 24px;
    left: 24px;

    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.page-logo-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);

    color: #ffffff;
    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.login-card {
    width: var(--container-width);
    padding: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.login-header {
    margin-bottom: 32px;
    text-align: center;
}

.login-header h1 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
}

.login-header p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 15px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field span {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.form-field input {
    height: var(--input-height);
    padding: 0 16px;

    background: var(--color-bg);
    color: var(--color-text);

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    font-size: 15px;
    outline: none;
}

.form-field input:focus {
    border-color: var(--color-primary);
}

.login-button {
    height: var(--button-height);
    margin-top: 8px;

    border: none;
    border-radius: var(--radius-md);

    background: linear-gradient(135deg, #7c3aed, #8b5cf6);

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.2s ease;
}

.login-button:hover {
    transform: translateY(-1px);
}

.theme-toggle {
    position: fixed;
    top: 24px;
    right: 24px;

    width: 74px;
    height: 36px;
    padding: 4px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;

    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.theme-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 14px;
    color: var(--color-text-secondary);
}

[data-theme="dark"] .theme-icon.moon {
    background: var(--color-primary);
    color: #ffffff;
}

[data-theme="light"] .theme-icon.sun {
    background: #facc15;
    color: #1e293b;
}

.page-logo-text {
    display: flex;
    flex-direction: column;
}

.page-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.page-logo-subtitle {
    font-size: 12px;
    color: var(--color-text-secondary);
}