/* RESET */
* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: url("/assets/bg.png") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WRAPPER */
.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* LOGIN BOX */
.login-box {
    width: 360px;
    padding: 32px 28px 36px;
    background: rgba(10, 20, 35, 0.95);
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

/* LOGO — SATU-SATUNYA TEMPAT LOGO */
.login-box img.logo {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
    background: none;       /* WAJIB */
    position: static;       /* WAJIB */
}

/* TITLE */
.login-box h2 {
    color: #ffffff;
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

/* SUBTITLE */
.login-box p {
    color: #b9d4ff;
    font-size: 14px;
    margin: 6px 0 26px;
    line-height: 1.4;
}

/* INPUT */
.login-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 15px;
}

/* BUTTON */
.login-box button {
    width: 100%;
    padding: 14px;
    background: #2f6cf6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.login-box button:hover {
    background: #1f57da;
}

/* FOOTER */
.footer {
    display: block;
    margin-top: 18px;
    font-size: 12px;
    color: #9aa6c7;
}

/* ERROR */
.error {
    background: #ff4d4d;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 13px;
}
