body {
    background-color: lightgrey;
}

* {
    font-size: 10pt;
    font-family: 'Two';
}

.author-name {
    font-size: 30pt;
    font-family: 'One';
    margin: auto;
    text-align: center;
}

::placeholder {
    color: grey;
}

.signup-form-container {
    margin-left: auto;
    margin-right: auto;
    width: 19vw;
    border-radius: 1vh;
    padding: 2vh;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}
.signup-form {
    border-radius: 1vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signup-form input, button{
    border: 0.2vh solid lightgrey;
    border-radius: 0.5vh;
    margin: 1vh;
    width: 30vh;
}

.submit-button {
    margin-top: 1.3vh;
}


.form-text {
    margin: 1vh;
    width: 30vh;
    text-align: center;
}

.submit-button {
    background-color: deeppink;
    color: white;
    border-color: deeppink;
}

@font-face {
    font-family: 'One';
    src: url('../fonts/Steinerlight.ttf');
}

@font-face {
    font-family: 'Two';
    src: url('../fonts/Poppins-Light.ttf');
}
