body {
    display: flex;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: linear-gradient(45deg, var(--background-color), var(--main-color-darken));
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

input, select, textarea, button {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.notification {
    position: absolute;
    top: 2vh;
    right: 4vh;
    padding: 1vh 2%;
    font-size: 1.75vh;
    color: #fff;
    border-radius: .5vh;
    visibility: visible;
    opacity: 1;
    transition: .5s ease;
}

.notification.hidden {
    visibility: hidden;
    opacity: 0;
}

.notification.success {
    background-color: #007501;
}

.notification.warn {
    background-color: #ff7400;
}

.notification.error {
    background-color: #840000;
}

.form {
    min-width: 20%;
    padding: 3vh 2.5%;
    background-color: var(--foreground-color);
    border-radius: 1vh;
    text-align: center;
}

.form .formButton {
    display: block;
    font-size: 1.75vh;
    color: #fff;
    padding: 1vh 0%;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 1vh;
    cursor: pointer;
    text-decoration: none;
}

.form .logo {
    display: inline-block;
    height: 20vh;
    width: 20vh;
    background-image: var(--site-logo);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.form .name {
    display: flex;
    font-size: 2.5vh;
    color: #fff;
    font-weight: bold;
    position: relative;
    justify-content: center;
    margin-bottom: 2vh;
}

.form .accountForm .line {
    display: block;
    text-align: left;
    margin-bottom: 2vh;
}

.form .accountForm .line label {
    display: block;
    font-size: 2vh;
    color: #fff;
    margin-bottom: .5vh;
    font-weight: 600;
}

.form .accountForm .line input[type=text], .form .accountForm .line input[type=email], .form .accountForm .line input[type=password] {
    display: block;
    background-color: var(--background-color);
    color: #fff;
    width: 100%;
    font-size: 1.75vh;
    border: none;
    outline: none;
    border-radius: .5vh;
    padding: .5vh 2%;
}

.form .accountForm input[type=submit] {
    background-color: var(--main-color);
    margin: 1vh 0%;
}

.form h1 {
    display: flex;
    font-size: 2.25vh;
    color: #fff;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.form h1::before, .form h1::after {
    position: absolute;
    content: '';
    width: 35%;
    height: .2vh;
    background-color: #fff;
    left: 0;
}

.form h1::after {
    left: auto;
    right: 0;
}

.form .otherLogins .register {
    background-color: transparent;
    padding-top: 0vh;
}

.form .otherLogins .discord {
    background-color: #5865F2;
    margin-top: 1vh;
}

@media screen and (max-width: 600px), (orientation : portrait) {
    .notification {
        left: 0;
        top: 1vh;
        width: 70vw;
        margin: 0 13vw;
        text-align: center;
    }

    .return {
        left: 0;
        top: 2vh;
        justify-content: center;
        width: 100%;
    }
    
    .form {
        width: 85%;
        padding: 3vh 5%;
    }
}