@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    font-family: 'Inter', sans-serif;
}

.mainContainer {
    height: 100vh;
    width: 100vw;
    display: flex;
}

.mainContainer .loginForm .ghostSection {
    display: none;
}

.mainContainer .background {
    background-image: url('../img/powerpaybanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Ajuste a cor e a opacidade conforme necessário */
}

.mainContainer .background .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}

.mainContainer .background .content img {
    width: max-content;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    height: 15rem;
}

.background .content p {
    text-align: center;
    font-size: 1.8rem;
    color: #000000;
    font-weight: 400;
    max-width: 40rem;
    line-height: 3.2rem;
}

.loginForm {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loginForm button {
    background-color: #ff6634;
    color: #F8F9FD;
    border: none;
    width: 41rem;
    height: 4rem;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all ease 100ms;
}

.loginForm button:hover {
    background-color: #ff6634;
}

.loginForm form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    width: min-content;
}

.loginForm form label {
    font-size: 1.6rem;
    font-weight: 600;
}

.loginForm form input {
    width: 41rem;
    height: 4rem;
    border-radius: 0.4rem;
    border: 0.1rem solid #D9D9D9;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 1rem;
}

.loginForm a {
    color: #1E1E1E;
}

.loginForm .options {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.loginForm .options {
    font-size: 1.2rem;
}

.loginForm .options input {
    width: 1.5rem;
    height: 1.5rem;
}

@media(max-width: 900px) {
    body {
        overflow-x: hidden;
    }
    .mainContainer .loginForm .ghostSection {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }
    .mainContainer .loginForm .ghostSection img {
        width: 80%;
        height: 10rem;
    }
    .mainContainer .background {
        display: none;
    }
    .mainContainer {
        display: flex;
        width: 100vw;
        height: 100vh;
    }
    .loginForm {
        display: flex;
        flex-direction: column;
        width: 100%;
        width: 100%;
        /* Adjust the width as needed */
        padding: 1rem;
        /* Add padding as needed */
    }
    .loginForm form {
        width: 100vw;
        padding: 3rem;
    }
    .loginForm form input {
        width: 100%;
    }
    .loginForm form button {
        width: 100%;
    }
}

.select-role {
    margin-bottom: 25px;
    padding: 0 5px
}

.select-role .btn-group {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.select-role .btn-group .btn {
    margin: 0 2px;
    width: min-content;
    border: 1px solid #d4d4d4;
    text-align: left;
    padding-left: 56px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px!important;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #333;
    position: relative
}

.select-role .btn-group .btn.active,
.select-role .btn-group .btn.active:focus,
.select-role .btn-group .btn.focus.active {
    background-color: #ff67344f;
    border-color: #ff6634;
    color: #a82a00
}

.select-role .btn-group .btn .icon {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px
}

.select-role .btn-group .btn .icon .svg {
    width: 30px;
    height: 30px
}

.select-role .btn-group .btn span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #222
}

.login-box .login-title {
    padding: 0 0 10px;
    margin-bottom: 30px
}

.login-box .login-title h2 {
    font-size: 24px;
    font-weight: 700
}

.login-box .login-img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100px
}