* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("../img/fondo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

main {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    margin: auto;
    width: 80%;
}

section {
    background-color: whitesmoke;
    border-radius: 20px;
    box-shadow: 5px 5px 5px;
    padding: 2em;
    width: 350px;
}

.logo {
    background-image: url(../img/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;    
    height: 150px;
    margin: 0 auto 20px;
}

hr {
    height: 3px;
    margin-bottom: 20px;
}

input {
    border: 0;
    border-radius: 5px;
    color: grey;
    display: block;
    font-size: 16px;
    margin: 10px 0;
    padding: 15px;
    width: 100%;
}

input:hover {
    box-shadow: 2px 2px 5px #303030;
}

button {
    background-color: blue;
    border: 0;
    border-radius: 5px;
    color: whitesmoke;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    width: 100%;
}

button:hover {
    box-shadow: 2px 2px 5px orangered;
    cursor: pointer;
}

.gmail {
    align-items: center;
    background-color: rgb(238, 115, 71);
    border-radius: 10px;
    color: whitesmoke;
    display: flex;
    font-weight: bold;
    justify-content: center;
    margin-top: 20px;
    padding-right: 10px;
    text-decoration: none;
}

.gmail:hover {
    background-color: orangered;
    cursor: pointer;
}