@font-face {
    font-family: "Rubik";
    src: url('rubik-regular.ttf');
}
@font-face {
    font-family: "Rubik Light";
    src: url('rubik-light.ttf');
}

* {box-sizing:border-box;}

html {
    height: 100%;
}

body {
    background-color: #333;
    margin: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: 'Rubik', sans-serif;
}

.nav-buttons {
    position: absolute;
    top: 22px;
    right: 50px;
    z-index: 10;
}

button.nav-button {
    outline: none;
    border: none;
    color: #DDD;
    background-color: #232323;
    font-family: 'Rubik';
    cursor: pointer;
    transition: 100ms;
}

button.nav-button:hover {
    color: #FFF;
}

.container {
    margin: 25px;
    padding: 25px 50px 50px 50px;
    width: 30vw;
    min-width: 500px;
}

h1 {
    font-family: 'Rubik Light';
    font-weight: 400;
    margin-bottom: 5px;
    border-bottom: 1px solid #BBB;
    transition: 100ms;
}

h1 > a {
    color: #EEE;
    text-decoration: none;
}

h1 > a:visited {
    color: #EEE;
}

h1 > a:hover {
    color: #FFF;
}

form {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    font-family: 'Rubik Light';
    color: #DDD;
}

.signup-text-input {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 15px 4px rgba(0,0,0,0.25);
}

input[type=checkbox] {
    accent-color: #666;
}

.show-pass {
    display: flex;
    justify-content: space-between;
}

.show-pass-text {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
}

.submit-button {
    width: 50%;
    padding: 10px;
    margin: 10px auto;
    cursor: pointer;
    background-color: #DDD;
    transition: 250ms;
    font-family: 'Rubik';
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 15px 4px rgba(0,0,0,0.25);
}

.submit-button:hover {
    background-color: #FFF;
}

.bottom-links > a {
    color: #DDD;
    font-size: 0.75rem;
    text-decoration: none;
    transition: 100ms;
}

.bottom-links > a:hover {
    color: #FFF;
}

.bottom-links > a:visited {
    color: #BBB;
}

.bottom-links > a:visited:hover {
    color: #FFF;
}

.container > p {
    font-family: 'Rubik Light', sans-serif;
    margin-top: 5px;
    color: #DDD;
}

.bottom-links {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

nav {
    padding: 2em;
    height: 60px;
    background: #232323;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: 250ms;
}

.nav a {
    font-family: 'Rubik', sans-serif;
}

.navcontainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 20px;
}

.navcontainer > a {
    text-decoration: none;
}

.large {
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #FFF;
    height: 60px;
    margin-right: 3em;
}

.logo p {
    font-size: 2em;
    transition: 250ms;
    margin: 0;
    font-family: 'Rubik';
}

.pmlogo {
    width: 57px;
    height: 57px;
    transition: 250ms;
    margin-right: 3em;
}

@media (max-width: 941px) {
    .nav-buttons {
        top: 15px;
    }

    button.nav-button {
        font-size: 0.75rem;
    }

    .logo p {
        font-size: 1.225rem;
    }

    .pmlogo {
        margin-right: 1rem;
        width: 30px;
        height: 30px;
    }

    .logo {
        height: 50px;
    }

    nav {
        padding: 0;
        height: 50px;
    }
}