.auth-captcha {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.auth-captcha__image {
    border-radius: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.auth-captcha__refresh {
    background: #f2f2f2;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}
.auth-captcha__refresh:hover {
    background: #ddd;
}.auth-error {
    background: #ffeaea;
    border: 1px solid #ff9999;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    color: #a00;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}.auth-page {
    max-width: 420px;
    margin: 60px auto;
    text-align: center;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.auth-field {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.auth-field label {
    font-size: 14px;
    margin-bottom: 6px;
}

.auth-field input {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    transition: 0.2s ease;
}

.btn-primary {
    background: #000066;
    color: #fff;
}

.btn-primary:hover {
    background: #000099;
}

.btn-outline {
    border: 1px solid #000066;
    color: #000066;
}

.btn-outline:hover {
    background: #000066;
    color: #fff;
}

.auth-policy {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    margin-top: 10px;
}

.auth-policy a {
    color: #000;
    text-decoration: underline;
}
