﻿/* ==========================================================================
   FACILITYRF MODERN LOGIN PAGE STYLES
   ========================================================================== */
body, html {
    height: 100%;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc;
}

.login-container {
    min-height: 100vh;
}

/* Left Branding Side */
.login-brand-side {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

    .login-brand-side::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
        border-radius: 50%;
    }

.brand-quote {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Right Form Side */
.login-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #ffffff;
}

.login-box {
    width: 100%;
    max-width: 420px;
}

.login-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

/* Input Styling */
.form-floating > .form-control {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
}

    .form-floating > .form-control:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

.btn-login {
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

    .btn-login:hover {
        background-color: #1d4ed8;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    }

/* Custom Checkbox */
.form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}
