* {
    margin: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.top {
    padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 4px solid white;
    background-color: #6a8794;
}    

h1 {
    font-size: 55px;
    color: white;
}

.top p {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #6a8794;
}

h2 {
    font-size: 28px;
    color: #d0d0d0;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form p {
    padding-top: 15px;
    color: white;
}

input[type="text"],
input[type="email"] {
    font-size: 14px;
    border: none;
    padding: 5px 0;
    width: 300px;
    background-color: white;
}

button {
    margin-top: 15px;
    padding: 10px 0;
    width: 300px;
    border: none;
    font-weight: 600;
    background-color: #ffae24;
    cursor: pointer;
    margin-bottom: 30px;
}

.bottom a {
    font-size: 14px;
    color: #d0d0d0;
}