@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    background-color: #FFF5EB; /* Light orange background */
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.rows-login {
    width: 70%;
    height: 600px;
    background: #fff;
    margin: 0 auto;
    padding: 48px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    box-shadow: 0 10px 25px rgba(93, 46, 23, 0.1);
    /* Pastikan mengambil tinggi viewport penuh */
}

.cols-1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cols-2 .img-1 {
    margin-bottom: 24px;
}
.cols-2 .img-1 img {
    width: 180px;
}

.cols-1 .img-2 img {
    width: 100%;
}

.cols-1 h3 {
    line-height: 42px;
    color: #5D2E17; /* Burnt Umber */
}
.cols-1 a {
    font-size: 8px;
}

.cols-2 h3 {
    color: #5D2E17;
}

.cols-2 h4 {
    font-size: 30px !important;
    color: #5D2E17;
}

.cols-2 p {
    font-size: 16px;
    color: #595959;
}

.cols-2 form {
    margin-top: 36px;
}

.cols-2 form .form-label {
    font-size: 15px;
    color: #707070;
}

@media (max-width: 768px) {
    body {
        padding: 24px 0;
    }
    .rows-login {
        width: 90%;
        height: auto;
        padding: 48px 24px;
        grid-template-columns: 1fr;
    }
    .cols-1 {
        display: none;
    }

    .cols-1,
    .cols-2 {
        width: 100%;
    }

    .cols-2 h4 {
        font-size: 24px !important;
    }
}
