﻿div.logo-heading {
    margin-top: 15vh;
    margin-bottom: 30px;
}

form#account-form {
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    form#account-form > * {
        width: 100%;
    }

    form#account-form h2 {
        text-align: center;
    }

div#form-feedback {
    height: 30px;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

    div#form-feedback.error {
        color: red;
    }

    div#form-feedback.success {
        color: green;
    }

div#login-links {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    div#login-links > a {
        font-size: 13px;
        padding: 0 10px;
    }

input[type="email"]:not(input:first-of-type),
input[type="password"]:not(input:first-of-type) {
    margin-top: 4px;
    margin-bottom:30px;
}

input#btn-submit {
    box-sizing: border-box;
}

div.footer > a {
    font-size:13px;
}