﻿:root {
    --color-primary: #272663;
    --color-bg: #f5f7fb;
    --color-white: #ffffff;
    --color-border: #e5e7eb;
    --color-text: #1f2937;
}

/* BASE */
body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: var(--color-bg);
}

/* CONTAINER */
.auth-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD */
.auth-card {
    width: 100%;
    max-width: 400px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HEADER */
.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

    .auth-header .logo {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .auth-header h1 {
        font-size: 22px;
        color: var(--color-text);
    }

/* FORM */
.auth-body form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-body input {
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 14px;
}

    .auth-body input:focus {
        outline: none;
        border-color: var(--color-primary);
    }

/* BUTTON */
.auth-body button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

    .auth-body button:hover {
        opacity: 0.9;
    }

/* LINKS */
.auth-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
}
