@charset "UTF-8";

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

html, body {
    background: #577ae4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    line-height: 1.5em;
}

body > section.container {
    background-color: #f2f0ef;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.600);
}

body > section > h1 {
    text-align: center;
}

body > section > form > div {
    margin: 20px 0px;
}

body > section > form > div > input {
    height: 50px;
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #000;
    border-radius: 5px;
}

body > section > form > div > button {
    height: 50px;
    width: 100%;
    background: orangered;
    color: #fff;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 700;
    border: none;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.600);
}

body > section > form > div > button:hover {
    background: red;
}

body > section > form > div > p {
    color: red;
    font-size: 0.8em;
}