body {
    background-color: #fff;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#auth {
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column; /* Ubah menjadi column agar responsive mobile tetap bagus */
}

#auth-left {
    flex: 1;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh; /* Tambahkan ini agar #auth-left memenuhi layar */
}

.auth-logo {
    margin-bottom: 64px;
}

.auth-logo img {
    height: 24px;
}

.auth-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.auth-subtitle {
    font-size: 20px;
    line-height: 32px;
    color: #a8aebb;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 16px;
}

.form-control {
    width: 100%;
    padding: 12px;
    font-size: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-login {
    background-color: #ffa45c;
    border: none;
    padding: 12px 24px;
    font-size: 10px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #e38b49;
}

@media screen and (max-width: 767px) {
    #auth {
        flex-direction: column;
    }

    #auth-left {
        padding: 32px;
        height: 100vh;
    }
}
