body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: rgb(34, 37, 195);
    background: -moz-radial-gradient(circle, rgba(34, 37, 195, 1) 0%, rgba(45, 192, 253, 1) 100%);
    background: -webkit-radial-gradient(circle, rgba(34, 37, 195, 1) 0%, rgba(45, 192, 253, 1) 100%);
    background: radial-gradient(circle, rgba(34, 37, 195, 1) 0%, rgba(45, 192, 253, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2225c3", endColorstr="#2dc0fd", GradientType=1);
}

.container {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.conteudo {
    justify-content: center;
    display: flex;
    text-align: center;
    flex-direction: column;
    background-color: white;
    height: 400px;
    width: 400px;
    border-radius: 20px;
}

.inputs {
    cursor: pointer;
    margin: 10px;
    width: 300px;
    height: 30px;
    border-radius: 6px;
    border: none;
    border-bottom: 2px solid;
    border-color: blue;
    transition: 0.3s;
}

.inputs:focus,
.inputs:active {
    outline: none;
}

.inputs:hover {
    transform: scale(1.04);
}

.botao {
    color: white;
    margin: 30px;
    width: 300px;
    border-radius: 6px;
    height: 40px;
    font-size: 16px;
    border: none;
    background-color: blue;
    transition: 0.3s;
    cursor: pointer;
}

.botao:hover {
    box-shadow: 0 0 8px black;
    transform: scale(1.04);
}
