html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.content-container{
    max-width: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px auto;
    padding: 0px 10px;
}

.alert-failure {
  background-color: #d4edda;
  color: #571515;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 10px 0;
  border: 1px solid #c3e6cb;
}

.signup-form{
    display: flex;
    flex-direction: column;
}

.signup-form label{
    margin-bottom: 5px;
}

.signup-form input[type=text]{
    height: 40px;
    width: 100%;
    padding-left: 15px;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    border-radius: 3px;
    border: none;
    outline: none; 
}

textarea{
    font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    height: 100px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 3px;
    border: none;
    outline: none; 
}

.signup-form ul{
    margin-bottom: 5px;
}

.header-text{
    margin: 40px 0px;
}

.header-text h1{
    font-weight: 800;
    font-size: 42px;
    padding-bottom: 20px;
}

fieldset{
    border:none;
    padding-left: 0px;
}

button{
    height: 40px;
    width: 100%;
    background-color: #69727d;
    color: #FFF;
    border: none;
    outline: none; 
    border-radius: 5px;
    margin: 20px 0px;
}

.contact-form{
    height:1300px;
    width:99%;
    border:none
}

.contact-form button:hover{
    background-color: green;
}

iframe{
    height: 1300px;
    background: linear-gradient(180deg, #2EC396 0%, #0E5C75 100%);
}