html,body{
    font-family: verdana, sans-serif;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

body{
    padding: 20px;
}

input{
    outline: 0;
    padding: 10px;
    border-radius: 3px;
    border: 0;
}

input[type=text]{
    border-radius: 3px;
    border: 1px solid lightgrey;
}

input[type=button]{
    background-color: #008C98;
    color: white;
}

input[type=button]:hover{
    background-color: #009c9c;
    cursor:pointer;
}

.embed-container {
    margin-top: 15px;
    position: relative; 
    padding-bottom: 56.25%; /* ratio 16x9 */
    height: 0; 
    overflow: hidden; 
    width: 100%;
    height: auto;
    border: 4px solid lightgrey;
    background-image: url(../images/AVIGRO_logo.jpg);
    background-repeat:no-repeat;
    background-position: center center;
    -o-background-size:35% auto;
    -webkit-background-size:35% auto;
    -moz-background-size:35% auto;
    background-size:100% auto;
}
.embed-container iframe {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}
/* ratio 4x3 */
.embed-container.ratio4x3 {
    padding-bottom: 75%;
}