@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}


:root {
    --brown: #0000ee;
    --white: #ffffff;
}

.container-fluid {
    background:
        linear-gradient(to right, #0000ee, var(--white) 60%),
        url(../img/bzi.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.container-fluid .container:nth-child(1) {
    width: 65%;
}

.container-fluid .container:nth-child(2) {
    width: 35%;
    background-color: var(--brown);
}

.text {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: 60px;
    font-weight: 600;
}

.text strong {
    color: var(--brown);
    font-weight: 600;
}


.login-card {
    position: relative;
    top: 30px;
    right: 150px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    min-width: 400px;
}

.login-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.login-header h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown);
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}

.logo .logo-text {
    font-weight: 400;
    font-size: 16px;
}

.logo img {
    width: 70px;
}

.btn-login {
    background-color: var(--brown);
    color: var(--white);
}

.btn-login:hover {
    border: 1px solid var(--brown);
    color: var(--brown);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px;
}

.forgot {
    display: flex;
    justify-content: center;
}

.forgot a {
    text-decoration: none;
    color: var(--brown);
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 992px) {
    .login-card {
        right: 0;
        min-width: 0;
    }

    .container-fluid .container:nth-child(1) {
        width: 50%;
    }

    .container-fluid .container:nth-child(2) {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .login-header h4 {
        font-size: 1.5rem;
    }

    .container-fluid {
        flex-direction: column;
        background:
            linear-gradient(to bottom, #0000ee, hsla(0, 0%, 100%, 0.808) 90%),
            url('../assets/img/bzi.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
    }

    .container-fluid .container:nth-child(1) {
        width: 100;
    }

    .container-fluid .container:nth-child(1) .text {
        display: none;
    }

    .container-fluid .container:nth-child(2) {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background: none;
        height: 100vh;
    }

    .login-card {
        width: 90%;
    }
}