.form-container {
    width: 1000px;
    height: 700px;
    background-color: #121740;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 20px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 30px;
    position: relative;
    z-index: 2;
}

.title {
    text-align: center;
    margin: 10px 0 30px 0;
    font-size: 28px;
    font-weight: 800;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 15px;
}

.page-link {
    text-decoration: underline;
    text-align: end;
    color: #747474;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    color: #0073ac;
    text-decoration: none;
}
.page-link:hover {
    color: #e9ad01;
}

.form-btn {
    padding: 10px 15px;
    border-radius: 20px;
    background: #e9ad01;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.sign-up-label {
    margin: 0;
    font-size: 10px;
    color: #747474;
    text-align: center;
}

.sign-up-link {
    margin-left: 3px;
    text-decoration: underline;
    color: #08cb00;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
}
.sign-up-link:hover {
    color: #b4e50d;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.apple-login-button,
.google-login-button {
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    cursor: pointer;
}

.apple-login-button {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.google-login-button {
    border: 2px solid #747474;
    background-color: #fff;
}

/* .bar input {
    background-color: #0073ac;
} */
.control {
    background-color: #feb21a;
    width: 100%;
    height: 50px;
    border-radius: 10px;
}
.control:hover {
    background-color: #d59005;
}

/* --- Gaya dasar untuk desktop --- */
.bg-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #121740;
    height: 100vh;
    width: 100%;
}

.form-container {
    width: 100%;
    max-width: 400px;
    padding: 20px 30px;
}

/* Untuk device selain desktop */
@media (max-width: 992px) {
    .row.g-0 {
        position: relative;
    }

    .row.g-0 .col-8 {
        width: 100%;
    }
    .row.g-0 .col-8 img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        filter: brightness(0.5);
    }

    .row.g-0 .col-4 {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: none;
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    .row.g-0 .col-4 > .d-flex {
        background-color: rgba(89, 97, 158, 0.65) !important; /* transparan + paksa override */
        /* backdrop-filter: blur(6px); */
        padding: 30px 25px;
        border-radius: 15px;
        width: 100%;
        max-width: 400px;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 25px;
    }

    .row.g-0 .col-4 .w-100 {
        max-width: 100%;
    }
    .control {
        width: 100%;
    }
}

.bar form .form-control:hover {
    border-color: #e9ad01;
    box-shadow: 0 0 8px #e9ad01;
}

.bar form .form-control:focus {
    border-color: #e9ad01;
    box-shadow: 0 0 8px #e9ad01;
    outline: none;
}
