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

@keyframes liberatingFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.liberating-auth-wrapper {
    max-width: 880px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Golos Text', sans-serif;
    animation: liberatingFadeIn 0.5s ease-out;
}

.liberating-auth-logo {
    text-align: center;
    margin-bottom: 12px;
    animation: liberatingFadeUp 0.6s ease-out;
}

.liberating-auth-logo img {
    max-width: 260px;
    height: auto;
}

.liberating-auth-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 33.6px;
    color: #1E1E1E;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.2;
    animation: liberatingFadeUp 0.6s ease-out 0.05s both;
}

.liberating-auth-columns {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(237, 112, 38, 0.10), 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(237, 112, 38, 0.12);
    overflow: hidden;
    animation: liberatingFadeUp 0.7s ease-out 0.1s both;
}

.liberating-auth-col {
    flex: 1;
    padding: 40px 36px;
}

.liberating-auth-col:first-child {
    animation: liberatingFadeUp 0.7s ease-out 0.15s both;
}

.liberating-auth-col:last-child {
    animation: liberatingFadeUp 0.7s ease-out 0.2s both;
}

.liberating-auth-col-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #1E1E1E;
    margin: 0 0 24px;
    text-align: center;
    letter-spacing: -0.01em;
}

.liberating-auth-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(237, 112, 38, 0.15), transparent);
    min-height: 100%;
}

.liberating-auth-form p {
    margin: 0 0 20px;
}

.liberating-auth-form label {
    display: block;
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #1E1E1E;
    margin-bottom: 5px;
    letter-spacing: 0.01em;
}

.liberating-auth-form input[type="text"],
.liberating-auth-form input[type="email"],
.liberating-auth-form input[type="password"] {
    width: 100%;
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #1E1E1E;
    border-radius: 10px;
    border: 1.5px solid #e0d6d0;
    padding: 12px 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    background: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
}

.liberating-auth-form input[type="text"]:focus,
.liberating-auth-form input[type="email"]:focus,
.liberating-auth-form input[type="password"]:focus {
    border-color: #ED7026;
    box-shadow: 0 0 0 3px rgba(237, 112, 38, 0.12), 0 4px 12px rgba(237, 112, 38, 0.06);
    transform: translateY(-1px);
    outline: none;
    background: #fff;
}

.liberating-auth-form input[type="text"]:hover,
.liberating-auth-form input[type="email"]:hover,
.liberating-auth-form input[type="password"]:hover {
    border-color: #d4c4ba;
}

.liberating-auth-form input[type="submit"] {
    width: 100%;
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 15px;
    background: linear-gradient(135deg, #ED7026, #d45f1a);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 14px rgba(237, 112, 38, 0.3);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.liberating-auth-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #d45f1a, #b84f12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 112, 38, 0.4);
}

.liberating-auth-form input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(237, 112, 38, 0.3);
}

.liberating-auth-remember label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
}

.liberating-auth-remember input[type="checkbox"]:checked {
    accent-color: #ED7026;
}

.liberating-auth-lost-password {
    text-align: center;
    margin: 0 !important;
    padding-top: 4px;
}

.liberating-auth-lost-password a {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #ED7026;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.liberating-auth-lost-password a:hover {
    color: #d45f1a;
    transform: translateY(-1px);
}

.liberating-auth-error {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #721c24;
    background: #fef0f0;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 600px) {
    .liberating-auth-wrapper {
        margin: 30px auto;
    }

    .liberating-auth-columns {
        flex-direction: column;
        border-radius: 16px;
    }

    .liberating-auth-divider {
        width: 100%;
        height: 1px;
        min-height: 0;
        background: linear-gradient(to right, transparent, rgba(237, 112, 38, 0.15), transparent);
    }

    .liberating-auth-col {
        padding: 28px 20px;
    }
}
