/* Geral */
* {
    margin: 0;
    padding: 0;
    font-family: Helvetica;
    box-sizing: border-box;
}

.area-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Navbar */
.navbar-container,
.navbar-container-mobile-350 {
    width: 100%;
    height: 80px;
    background: #673ab7;
    padding: 0 2rem;
}

nav {
    position: relative;
}

.logo {
    width: 150px;
    padding-top: 1rem;

}

.navbar-items {
    position: absolute;
    right: 0;
    height: 80px;
    line-height: 80px;
    margin: 0;
    display: inline-block;
}

.navbar-items li {
    display: inline-block;
    margin-left: 25px;
}

.navbar-items a {
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}

.navbar-items a:hover {
    color: #608aff;
}

.default-btn {
    padding: 15px 20px;
    background-color: #2cc76a;
    border-radius: 5px;
}

.navbar-items .default-btn:hover {
    background-color: #22bb5f;
    color: #fff;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 45px;
    width: 500px;
    background-color: #4B0082;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.form-container h4 {
    color: #f5f5f5;
    font-size: 2.5rem;
    margin: 2rem;
}

.form-container form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

form label {
    color: #f5f5f5;
    font-size: 14px;
    margin-bottom: 4px;
}

form input {
    padding: 15px;
    outline: none;
    border: 0;
    margin-bottom: 20px;
    font-size: 14px;
    transition: all 0.5s;
}

form input:focus {
    border-radius: 16px;
}

form textarea {
    padding: 10px;
    outline: none;
    border: 0;
    font-size: 14px;
    margin-bottom: 30px;
    transition: all 0.5s;
}

form textarea:focus {
    border-radius: 16px;
}

form button {
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    transition: all 1s;
    margin-bottom: 20px;
}

form button:hover {
    background: #f5f5f5;
    color: #4B0082;
    border-radius: 16px;
}

.item {
    display: flex;
    flex-direction: column
}

/* Footer */
footer {
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }
 
 #footer-container {
     text-align: center;
     height: 80px; 
 }

 footer #footer-links {
    display: flex;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 10px;
 }

 #footer-links li {
    margin-right: 10px;
 }

 #footer-links a,
 #copyright {
    text-decoration: none;
    color: #6f6f6f;
    font-size: 12px;
 }

 #footer-links a:hover {
    color: #ef8f29;
 }

 #copyright {
    margin-bottom: 20px;
 }
 
 /* Responsividade */
 

 /* mobile */
 @media (min-width: 350px) { 
    .navbar-container-mobile-350{
        display: none;
    }
}
    
 @media (max-width: 650px) {
     .navbar-container {
         padding: 0 1rem;
     }
     
     .navbar-items li {
        margin-left: 5px;
     }
     
    .default-btn {
        padding: 4px 6px;
    }
    
    .form-container {
        width: 400px;
    }
 }
 
 /* mobile */
 @media (max-width: 450px) { 
     .navbar-container {
         padding: 0;
     }
     
     .default-btn {
        margin-right: 10px;
    }
    
    .form-container {
        width: 350px;
    }
 }
 
  /* mobile */
 @media (max-width: 350px) { 
     
     .navbar-container {
         display: none;
     }
     
      .default-btn {
        margin-right: 5px;
    }
    
     .navbar-items li {
        margin-left: 5px;
     }
     
     .default-btn {
        padding: 6px 10px;
    }
     
    .form-container {
        width: 300px;
    }
 }