/* === cf-auth.css === */
/* Стилi сторiнки скидання паролю та iнших auth форм */

.cf-auth-page {
    max-width: 480px;
    margin: 40px auto;
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    color: #333333;
}

.cf-auth-logo {
    font-size: 28px;
    font-weight: 800;
    color: #FE152D;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cf-auth-page h2 {
    font-size: 22px;
    color: #333333;
    margin: 0 0 16px 0;
    text-align: center;
    font-weight: 700;
}

.cf-auth-description {
    font-size: 14px;
    color: #666666;
    margin: 0 0 24px 0;
    line-height: 1.5;
    text-align: center;
}

.cf-auth-error {
    padding: 14px 16px;
    background: rgba(254, 21, 45, 0.08);
    border-left: 3px solid #FE152D;
    color: #c41027;
    border-radius: 6px;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

.cf-auth-success {
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.08);
    border-left: 3px solid #10b981;
    color: #047857;
    border-radius: 6px;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

.cf-auth-hint {
    font-size: 13px;
    color: #888888;
    margin: 0 0 20px 0;
    text-align: center;
    font-style: italic;
}

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

.cf-auth-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #333333;
    font-weight: 600;
}

.cf-auth-input {
    padding: 12px 14px;
    font-size: 15px;
    color: #333333;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.cf-auth-input:focus {
    outline: none;
    border-color: #FE152D;
    background: #ffffff;
}

.cf-auth-button {
    display: inline-block;
    padding: 14px 28px;
    background: #FE152D;
    color: #ffffff !important;
    text-decoration: none !important;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    margin-top: 4px;
}

.cf-auth-button:hover {
    background: #d91024;
    color: #ffffff !important;
}

.cf-auth-footer {
    text-align: center;
    margin: 20px 0 0 0;
    font-size: 13px;
    color: #888888;
}

.cf-auth-link {
    color: #FE152D !important;
    text-decoration: underline;
}

.cf-auth-link:hover {
    color: #d91024 !important;
}

/* Мобiлка */
@media (max-width: 600px) {
    .cf-auth-page {
        margin: 20px 12px;
        padding: 28px 20px;
    }
    .cf-auth-logo {
        font-size: 24px;
    }
    .cf-auth-page h2 {
        font-size: 19px;
    }
}
