body {
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    height: 100vh;
    margin: 0;
}
.container-login {
    display: flex;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100vh;
    @media (max-width: 1024px) {
        flex-direction: column;
    }
}
.left-section {
    background: #fff url("/assets/img/picture/bg_login.webp") no-repeat;
    background-size: cover;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 150px;
    @media (max-width: 1024px) {
        padding: 50px 100px;
    }
    @media (max-width: 768px) {
        padding: 50px;
    }
}
.logo {
    width: 60px;
    margin-right: 10px;
}
.img-berakhlak {
    width: 150px;
}
.title {
    font-family: "Pacifico", cursive;
    text-align: center;
    font-size: 36px;
}
.title-next {
    text-align: center;
    font-size: 36px;
}
.subtitle {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}
.right-section {
    flex: 1;
    background-image: linear-gradient(to top, #bccfff 0%, #f8cdfb 100%);
    padding: 100px 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    @media (max-width: 1200px) {
        padding: 50px 100px;
    }
    @media (max-width: 1024px) {
        padding: 50px 200px;
    }
    @media (max-width: 768px) {
        padding: 50px 40px;
    }
}
.title-form {
    color: #343660;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.subtitle-form {
    color: #343660;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
}
.form-login {
    width: 100%;
    margin-top: 30px;
}
.btn-login {
    width: 100%;
    background-color: #9d19a7;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.btn-login:hover {
    background-color: #6c0b73;
}
.label-login {
    color: #343660;
    font-size: 13px;
    font-weight: 600;
}
.footer {
    margin-top: 30px;
    text-align: center;
    color: #343660;
    font-size: 14px;
    font-weight: 500;
}
