

/* Start:/local/templates/zakargon/components/bitrix/system.auth.form/zakargon_auth/style.css?17731432814589*/
/* Auth Form Styles */
.auth-form {
    width: 100%;
}

.auth-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Messages */
.auth-form__message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-form__message--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.auth-form__message--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Form Fields */
.auth-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form__label {
    font-size: 16px;
    font-weight: 600;
    color: #3e3e3e;
    display: flex;
    align-items: center;
    gap: 5px;
}

.auth-form__required {
    color: #d9042b;
    font-weight: 700;
}

.auth-form__input {
    width: 100%;
    height: 54px;
    padding: 0 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-form__input:focus {
    outline: none;
    border-color: #d9042b;
    box-shadow: 0 0 0 3px rgba(217, 4, 43, 0.1);
}

.auth-form__input::placeholder {
    color: #a2a3a3;
}

/* Captcha */
.auth-form__captcha {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.auth-form__captcha img {
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

/* Remember me */
.auth-form__remember {
    margin: 10px 0;
}

.auth-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #3e3e3e;
}

.auth-form__checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
}

.auth-form__checkbox:checked {
    background: #d9042b;
    border-color: #d9042b;
}

/* Submit Button */
.auth-form__submit {
    margin-top: 10px;
}

.auth-form__button {
    width: 30%;
    height: 60px;
    background: linear-gradient(
        180deg,
        rgba(245, 5, 9, 0.6) 0%,
        rgba(184, 3, 42, 0.8) 100%
    );
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.auth-form__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 4, 43, 0.3);
}

.auth-form__button:active {
    transform: translateY(0);
}

/* Links */
.auth-form__links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

.auth-form__link {
    color: #d9042b;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.auth-form__link:hover {
    color: #b8032a;
}

/* Authorized state */
.auth-form__authorized {
    text-align: center;
    padding: 20px;
}

.auth-form__authorized p {
    margin-bottom: 20px;
    color: #3e3e3e;
    font-size: 16px;
}

.auth-form__logout {
    display: inline-block;
    margin-top: 15px;
    color: #a2a3a3;
    text-decoration: underline;
    font-size: 14px;
}

.auth-form__logout:hover {
    color: #3e3e3e;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auth-form__input {
        height: 50px;
        padding: 0 15px;
        font-size: 16px;
    }

    .auth-form__button {
        height: 54px;
        font-size: 16px;
    }

    .auth-form__links {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .auth-form__label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .auth-form__input {
        height: 48px;
        border-radius: 10px;
    }

    .auth-form__button {
        height: 50px;
        border-radius: 12px;
        font-size: 15px;
    }
}

/* Custom checkbox styling */
.auth-form__checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.auth-form__checkbox::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.auth-form__checkbox:checked::after {
    opacity: 1;
}

/* End */
/* /local/templates/zakargon/components/bitrix/system.auth.form/zakargon_auth/style.css?17731432814589 */
