:root {
    --primary-color: #9D1E2F;
    --primary-hover: #830c10;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #f8fafc;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    .form-side {
        width: 30% !important;
        flex: 0 0 30% !important;
        max-width: 30% !important;
        height: 100vh;
        overflow-y: auto;
    }

    .image-side {
        width: 70% !important;
        flex: 0 0 70% !important;
        max-width: 70% !important;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }

    .image-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 991.98px) {
    .form-side {
        width: 100% !important;
        min-height: 100vh;
    }
    .image-side {
        display: none !important;
    }
}

.custom-form-control {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: #f8fafc;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.custom-form-control:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(157, 30, 47, 0.1) !important;
    outline: none !important;
}

.btn-custom {
    color: #fff !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 12px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.btn-custom:hover {
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.btn-custom:active {
    transform: translateY(0) !important;
}

.no-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.no-scrollbar::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            45deg,
            rgba(15, 23, 42, 0.35) 0%,
            rgba(15, 23, 42, 0.15) 50%,
            rgba(15, 23, 42, 0.05) 100%
    );
    pointer-events: none;
}

.material-icons-outlined {
    vertical-align: middle;
    user-select: none;
}