/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BACKGROUND */
.bg-login {
    background: url('/gambar/lapangan.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

/* BLUR */
.bg-login::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
}

/* WRAPPER (BIAR GA FULL) */
.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

/* CARD */
.login-card {
    width: 100%;
    padding: 35px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* LOGO */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.logo-img {
    width: 110px;
    padding: 15px;
    background: #ffe4e6;
    border-radius: 20px;
    box-shadow: 
        inset 5px 5px 10px rgba(0,0,0,0.1),
        inset -5px -5px 10px rgba(255,255,255,0.5);
}

/* LABEL */
.label {
    font-weight: 600;
    color: #14532d;
    margin-bottom: 5px;
    display: block;
}

.input {
    background-color: rgba(240, 253, 244, 0.9) !important; /* hijau muda */
}
/* INPUT GROUP */
.input-group {
    margin-bottom: 15px;
}

/* INPUT */
.input-custom {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

/* FOCUS */
.input-custom:focus {
    border-color: #14532d;
    box-shadow: 0 0 0 2px rgba(20, 83, 45, 0.3);
    outline: none;
}

/* ERROR */
.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/* REMEMBER */
.remember {
    margin: 10px 0;
    font-size: 14px;
    color: #14532d;
}

/* CHECKBOX */
.checkbox-custom {
    accent-color: #14532d;
}

/* BUTTON */
.btn-login {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #14532d, #166534);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
}

/* FORGOT */
.forgot {
    text-align: center;
    margin-top: 12px;
}

.forgot a {
    color: #14532d;
    text-decoration: none;
    font-size: 14px;
}

.forgot a:hover {
    color: #166534;
}