
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: white;
}

header{
    padding-bottom: 20px;
}

nav{
    display: block;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 44%;
    background-color: #fffbfc;
}

.h1{
    padding-bottom: 10px;
}

.form1 {
    border: 1px solid #e2e2e2;
    padding: 30px;
    margin-left: 280px;
    margin-right: 280px;
    margin-top: 15px;
    line-height: 30px;
}

.form1 input[type=text],select{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #8c7d7d;
    box-shadow: 0px 0px 5px #2c2c2c;
    border-radius: 5px;
    box-sizing: border-box;
    }

select{
    background-color: #E7ECEE;
}

.article{
        margin-left: 280px;
        margin-right: 280px;
        margin-top: 15px;
    }

.form2 {
    border: 1px solid #e2e2e2;
    padding: 30px;
    margin-left: 280px;
    margin-right: 280px;
    margin-top: 15px;
    line-height: 30px;
}

.form2 input[type=date], input[type=time],input[type=number] {
    display:inline-block;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #8c7d7d;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #E7ECEE;
    box-shadow: 0px 0px 5px #2c2c2c;
}

.form2  .container {
    display: block;
    position: relative;
    padding-left: 3px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    font-family: Arial, Helvetica, sans-serif;
    color: #8c7d7d;
    line-height: 2px;
    font-size: 14px;
    font-style: italic;

}

.form2 input[type=file]{
    display: block;
    margin: 8px 0;
}

.form2 textarea{
    width: 100%;
    margin-top: 20px;
    resize:none;
    height:50px; 
}

textarea{
    background-color: #E7ECEE;
    box-shadow: 0px 0px 5px #2c2c2c;
    border-radius: 2px;
}

.form3 {
    margin-left: 280px;
    margin-right: 280px;
    margin-top: 20px;
    padding-bottom: 80px;
}

.form3 input[type=submit],input[type=reset] {
    display:inline-block;
    background-color: black;
    color:#F9F3F0 ;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    border-radius: 2px;
}

select:focus{
    border: 1px solid #2c2c2c;
    outline-color:#2c2c2c;
    box-shadow: 0 0 4px #2c2c2c;
}
   
    
input[type=date]:focus{ 
    outline-color: #2c2c2c;
    box-shadow: 0 0 4px #2c2c2c;
}

input[type=time]:focus{ 
    outline-color: #2c2c2c;
    box-shadow: 0 0 4px #2c2c2c;
}

input[type=number]:focus{ 
    outline-color:  #2c2c2c;
    box-shadow: 0px 0px 5px #2c2c2c;
}

textarea:focus{
    outline-color: #2c2c2c;
    box-shadow: 0px 0px 5px #2c2c2c;
}

input[type=text]{
    outline-color: #2c2c2c;
    box-shadow: 0px 0px 5px #2c2c2c;
}

input[type=submit]:hover{
    background-color:#f5f3f3;
    border-color: black;
    border: solid 1px;
    color:black;
}
    
input[type=reset]:hover{
    background-color:#f5f3f3;
    border-color: black;
    border: solid 1px;
    color:black;
}
 
footer{
    background: black;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    padding-top: 30px;
    color: white;
    margin-top: auto;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content p {
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
}

footer a {
    color: white
}








  
