﻿.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.form-label {
    width: 180px;
    font-weight: 500;
}

.form-input {
    flex: 1;
}
.captcha-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.captcha-box {
    width: 120px;
    height: 40px;
    border: 1px solid #ccc;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
}

.toggle-password:hover {
    color: #111;
}
.mobile-logo {
    display: none;
}
@media (max-width: 768px) {

    :root {
        --header-height: 31px;
    }

    #sidebar-column {
        position: fixed;
        top: calc(var(--header-height) + 10px);
        right: -320px;
        left: auto;
        width: 280px;
        max-height: 70vh;
        height: auto;
        z-index: 1050;
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        transition: 0.3s ease;
    }

        #sidebar-column.show {
            right: 16px;
        }

    #btn-toggle-sidebar {
        display: none;
    }

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        z-index: 1040;
        display: none;
    }

        .sidebar-overlay.show {
            display: block;
        }

    .mobile-logo {
        display: inline-block;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-menu-btn {
        border: none;
        font-size: 20px !important;
        background: transparent;
    }
        .mobile-menu-btn:hover {
            background: transparent !important;
            box-shadow: none !important;
        }
    .btn-outline-secondary {
        color: #2c7be5 !important;
    }
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-label {
        width: 100%;
        margin-bottom: 6px;
    }
    .captcha-row {
        flex-direction: row;
    }
}
