body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.login-container {
    display: flex;
    height: 100vh;
}

/* LEFT SIDE */
.login-left {
    flex: 1;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.login-left h1 {
    font-size: 40px;
    font-weight: bold;
}

.login-left p {
    opacity: 0.8;
    margin-top: 10px;
}

/* CARD INFO */
.info-box {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.info-card {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    width: 150px;
}

/* RIGHT SIDE */
.login-right {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGIN CARD */
.login-card {
    width: 350px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* INPUT */
.form-control {
    border-radius: 10px;
    height: 45px;
}

.input-group-text {
    background: transparent;
}

/* BUTTON */
.btn-login {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    height: 45px;
    border: none;
    transition: 0.3s;
}

.btn-login:hover {
    transform: scale(1.03);
}

.login-card {
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-left {
    position: relative;
}

.login-left::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    filter: blur(100px);
    top: 50%;
    left: 30%;
}

/* OPTIONS */
.options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}

.form-control {
    border: 1px solid #ddd;
    transition: 0.2s;
}

.form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 5px rgba(108,99,255,0.3);
}

.footer {
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 8px;
    font-size: 11px;
    color: #888;
    display: flex;
    justify-content: space-between;
}

.footer a {
    text-decoration: none;
    color: #888;
    margin-left: 10px;
}

.footer a:hover {
    color: #4f46e5;
}