﻿body form {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
}

.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;
}

.content {
    max-width: 498px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.content > h1 {
    color: #202AD0;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}

.content > p {
    color: #000033;
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
}

.boxAlert {
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    color: #000033;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;

    display: flex;
}

.warning {
    background: #FFFBF7;
    border: 2px solid #FFE372;
}

.error {
    background: #FFF7FA;
    border: 2px solid #FFB3B1;

    display: flex;
    justify-content: space-between;
}

.error div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.closeIcon {
    height: 10px;
}

.errorIcon {
    height: 17px;
    margin-right: 10px;
}

.closeIcon:hover {
    cursor: pointer;
}

.tituloErro {
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
}

.success {
    background: #F0FFFC;
    border: 2px solid #4EDAD3;
}

.success p {
    margin: 0;
}

.alertIcon {
    height: 17px;
    margin-right: 5px;
}

@media (max-width: 600px) {
    .content {
        width: 90% !important;
    }
}