body {
    font-family: "Inter", sans-serif;
    background: url("../images/background_1.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    height: 100vh;
    margin: 0;
    color: #384455;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: -1;
}

.login-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.container hr {
    color: #b7b7b7;
    margin-top: 24px;
    margin-bottom: 14px;
    size: 0.3;
}

.login-card {
    border-radius: 20px !important;
    padding: 40px 42px;

    div {
        margin-bottom: 24px;
        font-weight: 700;

        .form-label {
            color: #384455;
        }
    }
}

.title-text h2 {
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 55px;
    color: #384455;
}

.logo {
    position: absolute;
    top: 42px;
    left: 57px;
    display: block;
}

.login-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.btn {
    background-color: #1b3169;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.btn:hover {
    background-color: #00509e;
}

.forgot-password {
    margin-top: 10px;
}

.forgot-password a {
    color: #00509e;
    text-decoration: none;
    font-weight: 400;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.footer-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
    font-weight: 300;
}

.contact-admin {
    color: #1877f2;
    text-decoration: none;
    font-weight: 500;
}

.contact-admin:hover {
    text-decoration: underline;
    color: #0056b3;
}

.desc {
    line-height: 17.88px;
    font-weight: 400;
    font-size: 14px;
}

/* Responsif: 375 */
@media (min-width: 375px) {
    .logo {
        display: flex;
        justify-content: center;
        height: 65px !important;
    }
}

@media (min-width: 768px) {
    .logo {
        top: 40px;
        left: 80px;
    }
}

/* @media (min-width: 2560px) {
    body {
        background-size: cover;
        padding: 0 10%;
    }

    .login-container {
        max-width: 1200px;
        padding: 40px;
    }

    .logo {
        top: 60px;
        left: 80px;
    }

    .title-text h2 {
        font-size: 32px;
        margin-bottom: 70px;
    }

    .btn {
        padding: 16px 24px;
        font-size: 18px;
    }

    .footer-note {
        font-size: 16px;
    }
} */
