@import url('./pages/signin.css');

:root {
    --bg: #1e1e1e;
    --bg-light: #2a2a2a;
    --bg-card: #2f2f2f;

    --text: #ffffff;
    --text-muted: #a1a1a1;

    --primary: #00a6c3;
    --primary-hover: #00c2e0;

    --danger: #ff5f5f;

    --radius: 0;
    --shadow: 0 0 20px rgba(0, 166, 195, 0.15);

    --transition: 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.page-center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background: var(--bg-card);
    padding: 30px;
    width: 320px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.error {
    color: var(--danger);
    font-size: 13px;
    text-align: center;
    min-height: 16px;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}