*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Acumin Pro';
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Thin.ttf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-ExtraLight.ttf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Light.ttf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Medium.ttf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Semibold.ttf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Bold.ttf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Black.ttf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-UltraBlack.ttf') format('opentype');
    font-weight: 950;
    font-style: normal;
}

.login {
    display: flex;
    height: 100vh;
    width: 100%;
}

.login .bg-green,
.login .bg-image {
    width: 50%;
    height: 100%;
}

.login .bg-green {
    background-color: #044317;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.login .bg-green .intro {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.login .bg-green .intro img {
    width: 200px;
}

.login .bg-green .intro h1 {
    font-size: 46px;
    font-weight: 300;
    padding: 1rem;
}

.login .bg-green .intro p {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #FFF !important;
}

.login .bg-green form {
    display: flex;
    text-align: start;
    flex-direction: column;
    gap: 1rem;
}

.login .bg-green form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px !important;
    padding: 0px !important;
    color: #fff !important;
}

.login .bg-green form input {
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    padding: 15px 10px;
    width: 100%;
    color: #000;
    background: #FFF;
    border: none;
}

.login .bg-green form div {
    display: flex;
    justify-content: center;
    padding: 0px !important;
}

.login .bg-green form button {
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    padding: 15px;
    width: 180px;
    color: #000;
    background: #FEDC00;
    border: none;
    cursor: pointer;
}

.login .bg-green form button:hover {
    background: #e7c903;
}

.login .bg-green small {
    font-weight: 300;
}

.login .bg-green small a {
    color: #fff;
}

.login .bg-image {
    position: relative;
    overflow: hidden;
}

.login .bg-image img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.login .bg-image img:first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 60%;
    height: auto;
}

@media (max-width: 1023px) {
    .login .bg-green {
        width: 100%;
        height: 100%;
    }

    .login .bg-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .login .bg-green .intro h1 {
        font-size: 36px;
    }
}

@media (max-width: 425px) {
    .login .bg-green .intro h1 {
        font-size: 30px;
        padding: 0px;
    }
}

@media (max-width: 320px) {
    br {
        display: none;
    }
}

/* ajuste drupal */
.coh-ce-dd1a601b {
    padding-top: 0px !important;
    margin-top: 0px !important;
}