@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

body{
    font-family: 'Montserrat', sans-serif !important;
    background-color: #eff2f5 !important;
}



.main-content{
    background-image: url('https://media.graphassets.com/Wpi9rQ71S5CggzDrsnN0?_gl=1*1x9kahe*_ga*MTE1MjU3MjE2MC4xNjczNDQwMTkx*_ga_G6FYGSYGZ4*MTY3Mzk3NTU4OS40LjEuMTY3Mzk3NTYxNy4zMi4wLjA.') !important;
    background-size: cover !important;
    background-position: center !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.main-form-box{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 0 !important;
    width: 460px !important;
    animation: fadeInTop 1s ease-in both;
}




.main-form-box .header {
    background: #24AD8B !important;
    box-shadow: inset 0px -3px 0px rgb(0 0 0 / 20%);
    padding: 20px 10px;
    text-align: center;
    font-size: 26px;
    font-weight: 300;
    color: #fff;
}


.form-body{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    background-color: #F5F5F5 !important;
    padding: 20px 30px !important;
}

.main-title-form{
    text-align: center;
    margin: 0px !important;
    padding-bottom: 12px;
}

.main-title-form marker{
    font-weight: 300;
}

.main-form-control{
    display: block !important;
    width: 100% !important;
    height: 34px !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    border-radius: 5px !important;
    border: none !important;
    outline: none !important;
}

.main-bg-btn{
    margin: auto;
    border-radius: 5px !important;
    width: 40% !important;
    display: block !important;
    border: none !important;
    color: white !important;
    padding: 5px 0px !important;
    background-color: #24AD8B !important;
}

.main-footer{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    position: absolute;
    padding: 15px;
    font-size: 14px !important;
    color: #3d9970 !important;
    bottom: 0 !important;
    background-color: #F5F5F5 !important;
    width: 100% !important;
    text-align: center !important;;
    animation: fadeIn 2s; 
}


.main-footer a {
    text-decoration: none !important;
    color: #1d5c40 !important;
    font-weight: bold;
}


/* Variaaveis de posicionamento */
.w-100{
    width: 100% !important;
}

.flex-center{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.flex-between-center{
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.flex-between-end{
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
}

.flex-center-column{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
}

.flex-end{
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
}


.pt-1{
    padding-top: 0.5rem;
}

.pt-2{
    padding-top: 1rem;
}

.pt-3{
    padding-top: 1.5rem;
}

.pt-4{
    padding-top: 2rem;
}

.pt-5{
    padding-top: 2.5rem;
}

.mt-1{
    margin-top: 0.5rem;
}

.mt-2{
    margin-top: 1rem;
}

.mt-3{
    margin-top: 1.5rem;
}

.mt-4{
    margin-top: 2rem;
}

.mt-5{
    margin-top: 2.5rem;
}


/* Buttons variables */

.btnPrimary{
    padding: 10px 20px !important;
    background-color: #24AD8B !important;
    color: #fff !important;
    border: none;
    border-radius: 5px !important;
}

/* Fade Animations CSS */

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

@keyframes fadeInTop {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}


/* Pagina Lista de Contatos */
.main-content-container{
    width: 90% !important;
    margin: auto !important;
}


.main-form-content{
    width: 45% !important;
    padding: 20px !important;
}

