body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f3f2ef;
}

.card {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    background-color: #fff;
    width: 100%;
    max-width: 400px;
    margin-top: auto;
    margin-bottom: auto;
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.login-footer {
    margin-top: auto;
    text-align: center;
    width: 100%;
    padding: 10px;
    font-size: 12px;
}

.login-footer a {
    margin: 0 5px;
    color: #0073b1;
    text-decoration: none;
}

.form-group label {
    font-size: 14px;
}

.input-group-append button {
    font-size: 12px;
}



.text-center {
    font-size: 14px;
}

.text-primary {
    color: #0073b1 !important;
}

.terms {
    font-size: 12px;
}

/* Media query untuk perangkat mobile */
@media (max-width: 768px) {
    body {
        background-color: #fff;
    }

    .card {
        border-radius: 0;
        box-shadow: none;
        max-width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
    }
}