@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600&family=Open+Sans:wght@400;500&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    /* Primary */

    --Very_Dark_Blue: hsl(243, 87%, 12%);
    --Desaturated_Blue: hsl(238, 22%, 44%);

    /* Accent */

    --Bright_Blue: hsl(224, 93%, 58%);
    --Moderate_Cyan: hsl(170, 45%, 43%);

    /* Neutral */

    --Light_Grayish_Blue: hsl(240, 75%, 98%);
    --Light_Gray: hsl(0, 0%, 75%);
}

body{
    font-family: 'Open Sans', 'Golos Text', Arial, Helvetica, sans-serif;
    flex-direction: column;
    font-size: 20px;
    background-color: beige;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1{
    text-align: center;
    margin-bottom: 1em;
}
.form-group{
    margin-bottom: 1em;
}

.form-group > input{
    padding: 0.5em;
    width: 50%;
    text-align: center;
    float: right;
    border-radius: 3px;
}

form{
    width: 400px;
    overflow: hidden;
}

.signup{
    padding: 0.75em 3em;
    border: none;
    background-color: var(--Moderate_Cyan);
    color: white;
    border-radius: 5px;
    font-family: 'Golos Text', Arial, Helvetica, sans-serif;
}

.goback{
    text-decoration: none;
    background-color: var(--Very_Dark_Blue);
    color: white;
    padding: 0.8em 2em;
    margin-bottom: 2em;
    border-radius: 5px;
}

.goback:hover{
    background-color: orange;
    transition: ease 0.2s;
  }
