body {
    background: #f9fafb;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* BACKGROUND SHAPES */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #22c55e;
    top: 80px;
    right: 200px;
    opacity: 0.3;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: #6366f1;
    bottom: 50px;
    left: 150px;
    opacity: 0.3;
}

        /* LOGIN CARD */
.login-card {
    position: relative;
    z-index: 1;
    width: 350px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 30px;
    background: white;
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
}

.login-title i {
    font-size: 24px;
    color: #6366f1;
    margin-bottom: 10px;
}

.form-control {
    border-radius: 10px;
    padding: 10px;
}

.btn-login {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border: none;
    border-radius: 10px;
    padding: 10px;
    color: white;
}

.btn-login:hover {
    opacity: 0.9;
}

.footer-link {
    text-align: center;
    margin-top: 15px;
}