﻿body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient( 135deg, #003b95, #1976d2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px;
}

.login-card {
    width: 1200px;
    max-width: 100%;
    min-height: 700px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.illustration-panel {
    flex: 1;
    background: linear-gradient( 135deg, #004aad, #1e88e5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
}

    .illustration-panel::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -100px;
        right: -120px;
    }

.illustration-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-logo {
    height: 25px;
    margin-bottom: 30px;
}

.illustration-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.illustration-content p {
    font-size: 18px;
    opacity: .9;
    max-width: 500px;
    margin: auto auto 30px auto;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.login-panel {
    width: 450px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-logo {
    height: 55px;
    margin-bottom: 25px;
}

.login-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #212529;
}

.login-header p {
    color: #6c757d;
    margin-bottom: 35px;
}

.modern-input {
    height: 58px;
    border-radius: 30px;
    border: 1px solid #d9e2ec;
    padding-left: 20px;
    font-size: 15px;
}

    .modern-input:focus {
        border-color: #1976d2;
        box-shadow: 0 0 0 4px rgba(25,118,210,.15);
    }

.password-toggle {
    position: absolute;
    right: 20px;
    top: 18px;
    cursor: pointer;
    color: #888;
}

.btn-login {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient( 135deg, #1976d2, #003b95);
    transition: .3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(25,118,210,.30);
    }

.forgot-link {
    text-decoration: none;
    color: #1976d2;
    font-size: 14px;
}

    .forgot-link:hover {
        color: #003b95;
    }

@media (max-width: 991px) {
    .login-card {
        flex-direction: column;
        min-height: auto;
    }

    .illustration-panel {
        display: none;
    }

    .login-panel {
        width: 100%;
        padding: 40px 30px;
    }
}
