body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ddd; /* Синий фон */
}

.header-top {
    padding: 5px 0;
    width: 100%;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    background-color: #fff;
}
.cf-turnstile-wrapper {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #bdc3c7;
    background-color: #FAFAFA;
    margin-bottom: 10px;
    height: 66px;
}

.auth-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 80px 0 50px 0;
}

.auth-container img {
    max-width: 100px; /* Размер логотипа */
    margin-bottom: 1rem;
}

.auth-container h1 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #34495e;
}

.auth-container input {
    width: 100%; /* Равномерные отступы */
    padding: 15px 15px;
    margin: 0 auto 1rem auto;
    border: 1px solid #bdc3c7;
    border-radius: 10px;
    font-size: 1rem;
    color: #2c3e50; /* Черный текст */
    word-break: break-word;

}

.auth-container input::placeholder {
    color: #95a5a6;
}

.auth-container button {
    background-color: #3498db; /* Синяя кнопка */
    color: white;
    padding: 17px 12px;
    width: 100%; /* Уменьшенная длина кнопки */
    font-size: 1rem;
    border: 1px solid white; /* Белая обводка */
    border-radius: 10px; /* Закругленные края */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease; /* Плавный переход */
}

.auth-container button:hover {
    background-color: #2980b9;
}

.auth-container button:active {
    transform: scale(0.98); /* Небольшой эффект нажатия */
}

.auth-container button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.button-container {
    text-align: center;
}


.social-button {
    background-color: #f1f1f1;
    color: #333;
    margin: 0.3rem 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
hr {
    background-color: rgba(0 0 0 / .3);
    height: 1px;
}
.forgot-password {
    display: block;
    margin-top: 1rem;
    color: #2980b9;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}

.social-login form {
    display: block;
}
.social-login {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px!important;
    height: 70px!important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    color: white;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(0 0 0 / .3)!important;
    background-color: transparent!important;
}

.social-button img {
    width: 30px;
    height: 30px;
    margin-bottom: 0!important;
}