﻿body {
    width: 100vw;
    height: 100vh;
    background: #F5F5F5;
    font-family: "Catamaran", sans-serif !important;
    margin: 0;
}

.mainForm {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

input,
button,
span {
    font-family: "Catamaran", sans-serif !important;
}

.header {
    background: #202AD0;
    height: 72px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.header>img {
    height: 41px;
}

.header>span {
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    margin-left: 10px;
}

footer {
    color: #202AD0;
    background: #E3E1EC;
    padding: 16px 32px 16px 32px;
    height: 50px;
    line-height: 18px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    text-align: center;
}

footer a {
    color: #202AD0 !important;
    font-size: 12px !important;
    text-decoration: underline !important;
}

.btn {
    background: #202AD0;
    color: #FFE372;
    border-radius: 100px;
    width: 100%;
    cursor: pointer;
    border: none;
    height: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19.2px;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.btn:disabled {
    cursor: default;
    background: #E3E1EC;
    color: #91909A;
}

.formInput {
    border: 1px solid #ACAAB4;
    border-radius: 12px;
    height: 34px;
    padding: 8px 16px;
    color: #000033;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.formLabel {
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
    color: #000033;
    margin-left: 16px;
    margin-bottom: 2px;
}

.formGroup {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    width: 100%;
}

.formContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: #FCFCFC;
    border-radius: 12px;
}

.boxAlert {
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    color: #000033;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    display: flex;
    text-align: left;
}


.boxAlert>img:nth-child(1) {
    height: 17px;
    margin-right: 10px;
}

.boxAlert>div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.titleAlertBox {
    font-size: 12px;
    line-height: 21px;
    font-weight: 700;
}

.warning {
    background: #FFFBF7;
    border: 2px solid #FFE372;
}

.error {
    background: #FFF7FA;
    border: 2px solid #FFB3B1;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 21px;
}

.attencion {
    background: #DBF5FF;
    border: 1px solid #202AD0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 21px;
}

.error div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.closeIcon {
    height: 10px;
}

.errorIcon {
    height: 17px;
    margin-right: 10px;
}

.closeIcon:hover {
    cursor: pointer;
}

.info {
    background: #F0FFFC;
    border: 2px solid #4EDAD3;
}

.info p {
    margin: 0;
}

.success {
    background: #F3FFF3;
    border: 2px solid #68E699;
}

.success p {
    margin: 0;
}

.alertIcon {
    height: 17px;
    margin-right: 5px;
}

.helpTextError {
    display: none;
    color: #FD5970;
    font-weight: 700;
    line-height: 18px;
    font-size: 12px;
    margin-left: 16px;
}

.inputError {
    border: 1px solid #FF566E;
}

.inputError:focus {
    border: 1px solid #FF566E;
}

.labelError {
    color: #FD5970;
}

.tituloErro {
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
}

@media(max-width: 600px) {
    .linhaConteudo {
        width: 100%;
        height: 100%;
        display: block;
        padding: 16px;
    }

    .linhaConteudo td {
        width: 100% !important;
    }
}