@import "../config.css";
@import "../topo.css";
@import "../crumb.css";
@import "../click_links.css";
@import "../rodape.css";

/* FORM DEFAULT */

.container_small {
    width: 90%;
    max-width: 700px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.links_ctt {
    width: 100%;
    height: auto;
    padding: 20px 0 50px 0;
}

label {
    display: block;
    color: #333333;
    font-size: 12px;
}

input,
select,
textarea {
    width: 100%;
	height: 50px;
	border-radius: 5px;
	border: 1px solid #dddddd;
	padding: 0 20px;
	font-size: 14px;
	margin: 0 0 10px 0;
	color: #777777;
	background: #ffffff;
}

select,
textarea {
    width: 100%;
}

textarea {
	padding: 20px;
    height: 100px;
    resize: none;
}

.submit {
    margin-top: 20px;
    background-color: #000000;
    color: #ffffff;
    display: block;
    cursor: pointer;
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    border: 0;
    font-size: 16px;
    font-weight: 500;
}
/* FIM FORM DEFAULT */

/* FORM PAGINA */



.ctForm {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: -70px auto 0 auto;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    background-color: #ffffff;

    -webkit-box-shadow: 0px 0px 17px -7px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 17px -7px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 17px -7px rgba(0,0,0,0.2);
}

.ctForm .reCaptchaForm {
    font-size: 12px;
}

.ctForm .reCaptchaForm a {
    color: #3a4bed;
    text-decoration: underline;
}

.ctForm .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ctForm .row .col1 {
    width: 100%;
}

.ctForm .row .col2 {
    width: 49%;
}

.ctForm .row .col3 {
    width: 32%;
}

.ctForm .textForm {
    width: 100%;
    height: auto;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    margin-bottom: 20px;

    a {
        color: #3a4bed;
        text-decoration: underline;
    }

}

.erro {
    position: relative;
    overflow: hidden;
    padding: 15px 15px 15px 15px;
    border: 1px solid transparent;
    border-radius: 5px;

    color: #a42830;
    background-color: #f7a8a9;
    display: flex;
    margin-bottom: 20px;

    i {
        margin-right: 10px;
    }
}

.acerto {
    position: relative;
    overflow: hidden;
    padding: 15px 15px 15px 15px;
    border: 1px solid transparent;
    border-radius: 5px;

    color: #1c7c31;
    background-color: #85e89d;
    display: flex;
    margin-bottom: 20px;

    i {
        margin-right: 10px;
    }
}



#loading  {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999999999;
    span {
        width: 100%;
        height: 100%;
        inset: 0;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

#loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/* RESPONSIVE */
@media (max-width: 900px) {


    .ctForm .row .col2 {
        width: 100%;
    }

    .ctForm .row .col3 {
        width: 100%;
    }
    
}
/* FIM FORM PAGINA */