body {
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    height: 100vh;
    margin: 0;
}
.container-login {
    background: #fff;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100vh;
    @media (max-width: 1200px) {
        flex-direction: column;
    }
}
.left-section {
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 190px;
    @media (max-width: 1200px) {
        padding: 50px 120px;
    }
    @media (max-width: 768px) {
        padding: 50px;
    }
}
.logo-apps {
    width: 400px;
    @media (max-width: 1200px) {
        width: 300px;
    }
    @media (max-width: 768px) {
        width: 200px;
    }
}
.logo {
    height: 50px;
    margin-right: 10px;
}
.img-login {
    height: 100px;
}
.title {
    font-family: "Pacifico", cursive;
    text-align: center;
    font-size: 36px;
}
.subtitle {
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
    @media (max-width: 1024px) {
        font-size: 13px;
    }
    @media (max-width: 768px) {
        font-size: 12px;
    }
}
.integrasi-text {
    margin-top: 5px;
    font-weight: 600;
    font-size: 18px;
    @media (max-width: 1024px) {
        font-size: 16px;
    }
    @media (max-width: 768px) {
        font-size: 13px;
    }
}
.right-section {
    flex: 1;
    background: rgb(255, 255, 255, 0.9);
    padding: 80px;
    border-radius: 20px;
    border-bottom: 8px solid #ac2424;
    margin: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    @media (max-width: 1200px) {
        padding: 50px 100px;
    }
    @media (max-width: 1024px) {
        padding: 50px 150px;
    }
    @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: #e9e212;
    color: #666305;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 15px 0;
}
.btn-login:hover {
    background-color: #aaa50a;
    color: #fff;
}
.btn-google {
    width: 100%;
    background-color: #c8162a;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.btn-google:hover {
    background-color: #ac0a1d;
}
.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;
}
.bg-input {
    background-color: #ffffff !important;
    height: 50px;
}
