﻿
:root {
    --primary-color: #3b82f6; /* Blue 500 */
    --bg-body: #f8fafc; /* Slate 50 */
    --text-dark: #0f172a; /* Slate 900 */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.025em;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Login Page */
.login-split {
    min-height: 100vh;
    display: flex;
}

.login-left {
    width: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-right {
    display: none;
    width: 50%;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .login-left {
        width: 50%;
    }

    .login-right {
        display: block;
    }
}

.carousel-item {
    height: 100vh;
}

    .carousel-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        filter: brightness(0.6);
    }

.carousel-caption {
    bottom: 3rem;
    text-align: left;
    left: 3rem;
    right: 3rem;
}

.brand-logo {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.25rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-color: #e2e8f0;
    font-size: 1rem;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #2563eb; /* Blue 600 */
        border-color: #2563eb;
    }

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

