/* Стили для форм авторизации */
.auth-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 28px;
    color: #121212;
}

.auth-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #424242;
}

.auth-form input {
    height: 42px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    padding: 0 16px;
}

.auth-form input:focus {
    outline: none;
    box-shadow: none;
}

.auth-form button {
    width: 100%;
    padding: 0.75rem;
    background: #121212;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    height: 42px;
    line-height: 1;
}

.auth-form button:hover,
.auth-form button:focus {
    background: #00aeef;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #424242;
}

.auth-links a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.auth-links a:hover {
    color: #00aeef;
    text-decoration: none;
}

.section-wrap.light-bg {
    background-color: #f7f7f7;
}

.alert {
    margin-bottom: 20px;
    padding: 15px;
    border: none;
    border-radius: 0;
}

.alert-danger {
    background-color: #ff4d4d;
    color: white;
}

.alert-success {
    background-color: #5cb85c;
    color: white;
}

/* Стили для Cloudflare Turnstile */
.cf-turnstile > div {
    display: flex;
}

/* Стили для кнопки показа/скрытия пароля */
.auth-form .input-group {
    position: relative;
    width: 100%;
}

.auth-form .input-group-btn > .btn {
    background: #333;
    border: 1px solid #ebebeb;
    border-left: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form .input-group-btn > .btn:hover {
    background: #555;
}