*{
    padding: 0;
    margin: 0;
}

body, html{
    height: 100%;
}

body{
    background: linear-gradient(to bottom right, #02c4ff, #dfa8f5);
    background-attachment: fixed;
    background-color: #fff;
}

main{
    display: flex;
    margin: 100px auto auto;
    width: 800px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

figure{
    width: 400px;
    height: 450px;
    overflow: hidden;
}

img{
    width: 100%;
    height: 100%;
}

article{
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 400px;
    background-color: #fff;
    padding: 1.5em 2em 0;
}

h1{
    font-size: 1.3em;
    margin-bottom: 20px;
}

form{
    text-align: left;
    display: flex;
    flex-direction: column;
}

input{
    padding: 10px;
    margin-bottom: 5px;
}

.confirmar-container{
    margin: 20px 0;
}

button{
    width: 100px;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    background-color: #3b63ca;
    color: #fff;
    border: none;
    cursor: pointer;
}