@font-face {
    font-family: 'Myriad';
    src: url("/jakarta.faces.resource/fonts/MyriadPro-Regular.otf.xhtml?ln=erpancora") format("opentype");
    font-weight: 'normal';
}
@font-face {
    font-family: 'MyriadBold';
    src: url("/jakarta.faces.resource/fonts/MyriadPro-Bold.otf.xhtml?ln=erpancora") format("opentype");
    font-weight: 'bold';
}

body {
    font-family: Myriad, sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

button {
    cursor: pointer;
    padding: 10px;
    background-color: #003B5D;
    color: white;
    border: none;
    border-radius: 4px;
}

button:hover {
    background-color: #568299;
}

.secondary-label {
    color: #727272;
    font-weight: 400;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-1 {
    /*    margin-top: 0.5rem;*/
}

.flex-container {
    display: flex;
    /*    flex: 1;*/
    align-items: center;
    justify-content: space-between;
}

.flex-container .form-container {
    /*    flex: 1;*/
    margin: 0 5rem;
}

.flex-container .form-container h1 {
    text-align: center;
    /*    margin-bottom: 20px;*/
    font-size: 20px;
}

.ui-inputfield {
    font-size: 16px;
}
.form-container {
    background-color: #fff;
    width: 454px;
    /*    padding: 20px;
        min-width: 14rem;*/
    /*    border-radius: 4px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

.form-container img {
    display: block;
    margin: 0 auto;
    /*    margin-bottom: 20px;*/
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container label {
    margin-bottom: 1rem;
}

.form-container input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container button {
    padding: 10px;
    background-color: #003B5D;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.image-container {
    background-image: url("/jakarta.faces.resource/images/banner-background-login.png.xhtml?ln=erpancora");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.image-container img {
    max-width: 100%;
    height: 100vh;
}

/* Franchises */
.franchise-upper-block {
    width: 100%;
    height: 278px;
    position: absolute;
    top: 0;
    background-color: #003B5D;
}

.franchise-card {
    background-color: #fff;
    padding: 40px;
    position: absolute;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.franchise-card img {
    width: 146px;
    height: 110px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.franchise-card ul {
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #E0E0E0;
}

.franchise-list-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #E0E0E0;
}

.mobile-banner {
    display: none;
}

@media (max-width: 1024px) {
    img.hide-on-mobile {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .flex-container {
        display: flex;
        flex-direction: column;
        margin: 0;
        max-height: 17rem;

    }

    .image-container {
        display: none;
    }

    .mobile-banner {
        display: block;
        color: white;
        height: 8rem;
        padding-top: 2rem;
        width: 100%;
        text-align: center;
    }

    .form-container {
        margin: 0 1rem;
        padding: 0.5rem;
        position: absolute;
        top: 30%;
        width: 90%;
    }

    .form-container img {
        width: 100px;
    }

}