body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        linear-gradient(rgba(12, 54, 32, 0.85),
            rgba(12, 54, 32, 0.85)),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1470&auto=format&fit=crop') center center/cover no-repeat;
    min-height: 100vh;
}

.login-wrapper {
    min-height: 100vh;
}

.login-card {
    width: 100%;
    max-width: 420px;
    border: none;
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.08);
}

.login-header {
    text-align: center;
    padding: 35px 30px 10px;
}

.login-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #38a169, #14532d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 18px;
    color: white;
    font-size: 32px;
}

.login-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 6px;
}

.login-header p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
}

.login-body {
    padding: 25px 30px 35px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-control {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    padding-left: 45px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #38a169;
    box-shadow: 0 0 0 0.15rem rgba(56, 161, 105, 0.15);
}

.input-group-custom {
    position: relative;
}

.input-group-custom i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 10;
}

.btn-login {
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #38a169, #14532d);
    border: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.btn-login:hover {
    background: linear-gradient(135deg, #2f855a, #0f3d22);
    transform: translateY(-1px);
}

.alert-custom {
    border-radius: 14px;
    font-size: 14px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: #9ca3af;
}

@media(max-width: 576px) {
    .login-card {
        margin: 20px;
    }

    .login-header {
        padding: 28px 20px 10px;
    }

    .login-body {
        padding: 20px;
    }
}