@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

form{
    width: 450px;
    margin: auto;
    background: rgba(0,0,0,0.4);
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 7px;
}
h2{
    color:#fff;
    text-align: center;
    margin: 0;
    font-family: berlin sans fb;
    font-weight: 100;
    margin-bottom: 20px;
    font-size: 30px;
}
input,textarea{
    width: 100%;
    margin-bottom: 20px;
    padding: 8px;
    font-size: 15px;
    border: none;
}
textarea{
    min-height: 130px;
    max-height: 200px;
    max-width: 100%;
}
#boton{
    background-color: #31384a;
    color: #fff;
    font-size: 17px;
    padding: 10px;
}
#boton:hover{
    border: 1px solid #fffa;
    cursor: pointer;
}

@media (max-with:480px){
form {
	with: 100%;
	}
}

