.area {
    border-radius: 12px;
    background: rgb(255, 255, 255);
    width: 11vw;
    min-height: 15vh;
    cursor: pointer;
    padding: 5px;
    &:hover {
        border: 2px solid #0d69d4;
    }
}

.container-areas {
    width: 90vw !important;
}

.w-form {
    width: 47vw;
}

.rodape-card {
    background: #f5f5f5;
    padding: 15px;
}

.area-img {
    background: #f5f5f5 !important;
    padding: 20px;
    border-radius: 50%;
}

.area-img img {
    width: 30px;
}

.titulo-area {
    display: flex;
    justify-content: center;
    background: #0d69d4;
    color: white;
    border-radius: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    width: 100%;
}

.fs-5 {
    font-size: 1.3vw;
}

.formulario {
    width: 100%;
}

.obrigatorio {
    font-size: 12px !important;
    font-weight: 300 !important;
}

.form-control {
    border-radius: 16px !important;
    background: #f5f5f5 !important;
    border-color: #f5f5f5 !important;

    &:focus {
        border-color: #007bff !important;
    }
}

.custom-select {
    border-radius: 16px !important;
    background: #f5f5f5 !important;
    border-color: #f5f5f5 !important;

    &:focus {
        border-color: #007bff !important;
    }
}

input[type="file"]::file-selector-button {
    border: 2px solid #007bff;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    border-radius: 16px;
    background-color: #f5f5f5;
    transition: 1s;
}

.error {
    color: rgb(245, 112, 112) !important;
    font-size: 13px;
    font-weight: 400;
}


@media only screen and (max-width: 600px) {
    /* For Mobile: */

    .area {
        border-radius: 12px;
        background: rgb(255, 255, 255);
        width: 35vw !important;
        min-height: 15vh;
        cursor: pointer;
        padding: 5px;
        &:hover {
            border: 2px solid #0d69d4;
        }
    }

    .area-img img {
        width: 2rem;
    }

    .w-form {
        width: 90vw;
    }
}