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

body {
    background-color: rgb(20, 20, 20);
    text-align: center;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
    Arial, Helvetica, sans-serif;
}

.header {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 25px;
}

.headerPadding {
    padding-bottom: 20px;
}

.emailTextfield {
    height: 40px;
    /* width: 500px; */
    width: 70%;
    min-width: 200px;
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    border-width: 0px;
    padding: 10px;
    outline: none;
    margin-top: 25px;
}

.submitButton {
    height: 40px;
    width: 70px;
    border-radius: 10px;
    border-width: 0px;
    background-color: rgb(0, 122, 255);
    margin-left: 10px;
    color: white;
    font-weight: 600;
}

.submitButton:active {
    background-color: rgb(0, 150, 255);
    color: rgb(230, 230, 255);
}