* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 30%),
        linear-gradient(135deg, #18181b, #000);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.auth-card {
    width: 100%;
    max-width: 430px;
    background: #111;
    border: 1px solid #27272a;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.auth-logo img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.auth-logo strong {
    display: block;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 8px;
}

.auth-logo span {
    color: #a1a1aa;
    font-size: 28px;
}

.auth-header {
    margin-bottom: 28px;
}

.auth-header h1 {
    font-size: 36px;
    margin: 0 0 10px;
}

.auth-header p {
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field label {
    display: block;
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 8px;
}

.auth-field input {
    width: 100%;
    background: #18181b;
    border: 1px solid #3f3f46;
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
}

.auth-field input:focus {
    outline: none;
    border-color: #fff;
}

.auth-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    color: #a1a1aa;
    font-size: 14px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-options a:hover {
    color: #fff;
}

.auth-button {
    width: 100%;
    border: 0;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

.auth-button:hover {
    background: #d4d4d8;
}

.auth-error {
    color: #f87171;
    font-size: 14px;
}

.auth-status {
    background: #064e3b;
    color: #d1fae5;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 20px;
}