* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background-image: url(../img/wave.svg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}

header{
    margin-top: 60px;
}

header img {
    width: 250px;
    display: block;
    margin: 0px auto;
}

header p {
    margin: 50px auto;
    margin-bottom: 30px;
    text-align: center;
    color: #003976;
    font-size: 15px;
    padding: 0px 25px;
}

footer {
    background-color: #003772;
    padding: 15px 0;
}

footer p{
    color : #fff;
    text-align: center;
    font-size: 10px;
    font-weight: 100;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 85%;
    padding: 50px 0px;
    padding-top: 0;
}

form label {
    margin-bottom: 20px;
    font-size: 15px;
    color: #003976;
}

form input[type='text'], form input[type='password'] {
    width: 100%;
    height: 40px;
    border: 1px solid #7d7d7d;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    color: #003976;
}

form input[type="submit"] {
    background: #fcc000;
    border: 0;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 10px;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    cursor: pointer;
}