* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    height: 120px;
    background: red;
}

input {
    margin-bottom: 30px;
    border: 2px solid #eee;
    outline: none;
    color: black;
}

p {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

#thanks {
    display: none;
}