/* ===== Page Background ===== */
body {
    background-color: #f4f6f9;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

/* ===== Center Wrapper ===== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Login Card ===== */
.login-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* ===== Logo Section ===== */
.logo-section {
    text-align: center;
    margin-bottom: 25px;
}

.logo-section img {
    max-height: 80px;
}

.logo-title {
    margin-top: 15px;
    font-weight: 600;
}

.logo-subtitle {
    color: #6c757d;
    font-size: 14px;
}

/* ===== Button Custom ===== */
.btn-primary {
    background-color: #1d2a3a;
    border-color: #1d2a3a;
}

.btn-primary:hover {
    background-color: #16202d;
    border-color: #16202d;
}

/* ===== Footer ===== */
.footer {
    background: #1d2a3a;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-size: 13px;
}
