

/* Start:/local/templates/.default/components/pfcsochi/auth/.vue/style.css?17655437244026*/
/**
 * Стили для Vue компонентов авторизации и регистрации
 */

.pfcsochi-auth-form {
    /* max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px; */
}

.pfcsochi-register-form {
    /* max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px; */
}

.auth-step {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
}

.auth-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}


.form-control {
    width: 100%;
    display: block;
    position: relative;
    border: 1px solid var(--medium-gray);
    background: #fff;
    border-radius: 4px;
    padding: 26px 15px 8px;
    transition: border-color .2s;
}

.form-control::placeholder {
    color: transparent;
}

.form-control:focus::placeholder {
    color: var(--dark-gray);
}

.form-control[type="date"][data-value=""]{
    color: transparent;
}
.form-control[type="date"][data-value=""]:focus{
    color: #000;
}

.form-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray);
    z-index: 1;
    pointer-events: none;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
}

.form-control:not([data-value=""]) ~ .form-label,
.form-control:focus ~ .form-label {
    transform: scale(.85) translateY(-26px);
}

select.form-control {
    appearance: none;
}
select.form-control[data-value=""] {
    color: transparent;
}

select.form-control:focus{
    color: #000;
}

.show-password{
    position: absolute;
    top: 26px;
    right: 12px;
    background: #fff;
    border: 0;
    padding: 0 4px;
    -webkit-appearance: none;
    appearance: none;
    visibility: hidden;
}

.form-control:focus~.show-password,
.form-control:not(:placeholder-shown)~.show-password {
    visibility: visible;
}


.form-row {
    display: flex;
    gap: 20px;
    margin: 0 !important;
}


.form-control:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-control:disabled {
    background-color: #fdfdfd;
    cursor: not-allowed;
}

.form-control-code {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 8px;
}


.button--resend{
    background-color: transparent;
    border: none;
    font-size: 15px;
    color: var(--blue);
    margin-bottom: 30px;
    line-height: 1.5;
}

.button--resend:disabled{
    cursor: default;
    color: #000;
    opacity: .8;
}


.pfcsochi-auth-form .status {
    display: block;
    margin-bottom: 24px;
}


.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.auth-link {
    color: var(--blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-link-small {
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    margin-left: 8px;
}

.auth-link-small:hover {
    text-decoration: underline;
}

.auth-resend {
    text-align: center;
    margin-top: 20px;
}

.text-danger {
    color: #c33;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-title {
        font-size: 24px;
    }
    
    .auth-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .auth-footer {
        margin-top: 18px;
        padding-top: 18px;
    }

    .form-row{
        flex-direction: column;
        gap: 0;
    }

    .form-control {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}


/* End */
/* /local/templates/.default/components/pfcsochi/auth/.vue/style.css?17655437244026 */
