html, body {
    all: unset;
    font-family: "Poppins", sans-serif;
}

/* =========================
   WRAPPER & BACKGROUND
========================= */
.login-wrapper {
    position: relative !important;
    height: 100vh;
    overflow: hidden;
}

.login-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(11,14,71,0.85), rgba(11,14,71,0.55)),
        url('/images/loginbg.png') no-repeat center/cover;
}

/* =========================
   LOGO
========================= */
.logo-area {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: 2;
    margin: 0 auto 20px;
    text-align: center;
}

.logo-area img {
    width: 200px;
    height: auto;
}

/* =========================
   MAIN LAYOUT
========================= */
.main-layout {
    position: relative;
    height: 100%;
    z-index: 2;
}

/* =========================
   LEFT CONTENT
========================= */
.left-content {
    position: absolute !important;
    top: 50%;
    left: 80px;
    transform: translateY(-50%) !important;
    color: white;
}

/* Heading */
.left-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 480px;
    margin: 0;
}

/* Paragraph */
.left-content p {
    margin: 20px 0 40px;
    color: #dcdcdc;
    font-size: 15px;
    max-width: 480px;
    line-height: 1.6;
}

/* =========================
   BENEFIT BARS
========================= */
.left-content {
    position: relative;
}

.left-content .benefit-bars-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.benefit-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    width: 140px;
    min-height: 140px;
    text-align: center;
    transition: 0.3s;
    flex: 1;
    min-width: 120px;
}

.benefit-bar:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.18);
}

.benefit-bar i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b6ef2, #6bcf63);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 22px;
}

.benefit-bar span {
    font-weight: 600;
    font-size: 13px;
    color: white;
}

/* =========================
   LOGIN CARD
========================= */
.login-container {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
}

.login-card {
    width: 420px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Titles */
.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* =========================
   FORM
========================= */
.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.input-group {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f8f9fa;
    transition: 0.3s;
}

.input-group:focus-within {
    border-color: #2b6ef2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(43,110,242,0.1);
}

.input-group:hover {
    border-color: #2b6ef2;
}

.form-control {
    border: none;
    background: transparent;
}

.form-control:focus {
    box-shadow: none;
}

.input-group-text,
.toggle-password {
    border: none;
    background: transparent;
}

/* =========================
   BUTTON
========================= */
.btn-login {
    background: linear-gradient(90deg, #2b6ef2, #6bcf63);
    border: none;
    color: white;
    height: 45px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43,110,242,0.3);
}

/* =========================
   LINKS
========================= */
.forgot-password {
    color: #2b6ef2;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-agreement {
    font-size: 12px;
    color: #777;
}

.or-text {
    font-size: 12px;
    color: #999;
}

/* =========================
   BOTTOM GRADIENT LINE
========================= */
.login-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6ef2 0%, #6bcf63 100%);
    z-index: 3;
}