html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: #131722;
    color: #d1d4dc;
    font-family: Arial, sans-serif;
}

.auth-page {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-panel {
    width: min(380px, 100%);
    border: 1px solid #2a2e39;
    background: #1e222d;
    padding: 20px;
}

.auth-title {
    margin: 0 0 18px;
    color: #f0f3fa;
    font-size: 18px;
    font-weight: 600;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    color: #9aa0ad;
    font-size: 12px;
}

.auth-input {
    height: 36px;
    border: 1px solid #2a2e39;
    background: #131722;
    color: #f0f3fa;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
}

.auth-input:focus {
    border-color: #2962ff;
}

.auth-button {
    width: 100%;
    height: 36px;
    border: 0;
    background: #2962ff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.auth-button:disabled {
    cursor: default;
    opacity: 0.65;
}

.auth-error {
    min-height: 18px;
    margin: 12px 0 0;
    color: #ff6b6b;
    font-size: 12px;
}
