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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: 'Kanit', sans-serif;
}

body {
    background-color: rgb(255, 255, 255);
}

h3 {
    font-size: 65px;
}

header {
    height: 91vh;
}
p {
    color: rgb(0, 0, 0);
}

.container {
   max-width: 80%;
    margin: 0 auto;
    padding: 0 2%;
}

.btn {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 25px 30px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.1s;
}
.btn:hover {
    background-color: rgb(180, 122, 228);

}

.form-control {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

@keyframes onimte-outline {
    from {

        outline: 0px solid violet;
    }
}

to {
    outline: 20px solid rebeccapurple;
}

header {
    background-position: flex;
    background-size: cover;
    background-attachment: flex;


}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul a {
    color: rgb(255, 255, 255);
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 20px;
    display: block;

}

nav ul a:not(.contato):after {
    content: "";
    background-color: rgb(174, 85, 209);
    height: 5px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

nav ul a:hover::after {
    width: 80%;

}

.banner {
    display: flex;
    justify-content: center;
}

.banner .banner-text {
    margin: 90px 0 90px 0;
    text-align: center;
}

.banner .banner-text h1 {
    font-size: 100px;
    color: black;
}

.banner .banner-text p {
    font-size: 30px;
    color: white;
    font-weight: lighter;
    margin: 50px 0;
}

.index {
    background-color: violet;
    border-radius: 10px;
    padding: 10px;

}

.contato:hover {
    background-color: rgb(180, 122, 228);
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flex-icon {
    display: flex;
    flex-direction: row;
}

.img-autora {
    width: 600px;
    height: 600px;
    border: 3px solid black;
}

.tamanho {
    width: 200px;
}

.header-contato {
    padding-bottom: 50px;
}

.white {
    color: #fff;
}


.contato-info {
    margin-top: 80px;
}

.contato-info p{
    margin-left: 0px;
}

.descricao { 
    width: 80%;
    margin: 50px 0 50px;
}

.descricao {
    font-size: 20px;
    text-align: justify;
    margin: 50px 0 50px;
    width: 70%;
    letter-spacing: 1px;
}

.descricao-3 {
    font-size: 20px;
    text-align: justify;
    margin-left: 15%;
    letter-spacing: 1px;

}
.titulo-secao-3 {
    margin: 50px 0 50px;

}

.item {
    margin-top: 70px;
}

.btn-contato {
    margin-top: 50px;
    margin-bottom: 20px;
}
.form {
  background-color: #e4dede;
  border-radius: 5%;
} 

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:Arial, Helvetica, sans-serif
}

body{
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(90deg, #4627a9 0%, #8836a4, #d9499e )
}

.header {
color:  whitesmoke;
padding: 39px;
margin-left: 41%;
margin-top: 50px;
height: 70px;
width: 600px;
}

.form {
  padding: 45px;
  width: 45%;
  margin-left: 29%;
  margin-top: 1%;
  color: #8836a4;
}

.form-control{
  margin-bottom: 5px;
  padding-bottom: 45px;
  position: relative;
}

.form-control label {
  display: inline-block;
  margin-bottom: 5px ;
  color:#d9499e
}

.form-control input{
  border: 2px solid;
  display: center;
  border-radius: 10px;
  font-size: 15px;
  width: 100%;
  padding: 15px;
  color:#7933a3;
}

.form-control i {
  position: absolute;
  top: 45px;
  right: 10px;
  visibility: hidden;
}

.form-control small {
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form button{
  background-color: #7933a3;
  border: 2px solid #7933a3;
  color: #ffffff;
  font-size: 20px;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
}

/* error and success */
.form-control.success input{
  border-color: #2ecc71;
}
.form-control.error input {
    color: #e74c3c;
}

.form-control.success i.fa-check-circle{
    color: #2ecc71; 
    visibility: visible;
}

.form-control.error i.fa-exclamation-circle{
    color:#e74c3c;
    visibility: visible;
}

.form-control.error small{
    visibility: visible;
    color: #e74c3c;
}

footer {
    margin-top: 80px;
    background-color: #7933a3;
    text-align: center;
    font-size: 20px;
    color: #7933a3;
}