﻿body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d6efd, #6610f2, #20c997);
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

body::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.login-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.brand-panel {
    color: white;
    padding: 40px;
}

.brand-title {
    font-size: 3.2rem;
    font-weight: 800;
}

.brand-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.8;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
    font-weight: 500;
}

.login-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border: none;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.login-header {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 35px;
    text-align: center;
}

    .login-header i {
        font-size: 3rem;
    }

.login-body {
    padding: 40px;
}

.form-control {
    height: 55px;
    border-radius: 14px;
    border: 1px solid #dbe4f0;
    padding-left: 45px;
    font-size: 1rem;
}

    .form-control:focus {
        border-color: #6610f2;
        box-shadow: 0 0 0 0.2rem rgba(102,16,242,.15);
    }

.input-group-custom {
    position: relative;
}

    .input-group-custom i {
        position: absolute;
        top: 17px;
        left: 15px;
        color: #6c757d;
        z-index: 10;
    }

.btn-login {
    height: 55px;
    border-radius: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
    transition: 0.3s ease;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13,110,253,0.25);
    }

.footer-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.tenant-badge {
    background: linear-gradient(135deg, #20c997, #198754);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.welcome-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
}

    .welcome-card h5 {
        color: white;
        font-weight: 700;
    }

    .welcome-card p {
        color: rgba(255,255,255,0.85);
        margin-bottom: 0;
    }

@@media(max-width: 991px) {
    .brand-panel {
        text-align: center;
        margin-bottom: 40px;
    }

    .brand-title {
        font-size: 2.5rem;
    }
}

