body {
    font-family: 'Poppins', sans-serif;
    margin:0px;
    padding: 0px;
    background: #5B0877;
 	display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.no-scroll {
    overflow: hidden;
}

body textarea{
    font-family: 'Poppins', sans-serif !important;
    font-size: 1em !important;
}

input[type='text'], input[type='password'] {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

input[type='button'] {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/*if page should have backgkround use bacground as a wrapper*/
.background {
    background: #5b087783;

    background-image: url("../media/background.png");
    background-blend-mode: darken;

    background-repeat: no-repeat;
    background-size: 100% 100%;
	flex: 1;
}

header {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    height: 6rem;

    background: #6f0e8f85;
    background-image: url("../media/nav.jpg");
    background-blend-mode: exclusion; 

    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.logo h1 {
    font-size: 50px;
    margin: 10px 200px;
    margin-right: 0;
    color: white;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 100px;
}

nav a {
    font-weight: lighter;
    font-size: 24px;

    padding: 10px 28px;
    text-decoration: none;
    color: white;
    border-radius: 10px;
}

nav a:hover {
    transition-duration: 200ms;
    background:rgba(0, 0, 0, 0.25);
}

.menu-checkbox {
    position: absolute;
    margin: 0;
    width: 2.2rem;
    height: 2.2rem;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    z-index: 6;
}

.menu-checkbox:checked ~ .nav-wrapper {
    opacity: 1;
    pointer-events: all;
}

.menu-checkbox:checked ~ .menu-toggle {
    background: transparent;
}
.menu-checkbox:checked ~ .menu-toggle::before {
    top: 0;
    transform: rotateZ(45deg);
}
.menu-checkbox:checked ~ .menu-toggle::after {
    top: 0;
    transform: rotateZ(-45deg);
}

.content-wrapper {
    flex: 1;
}

footer {
    width: 100%;
    background-color: #5B0877;
    display: flex;
    font-family: 'Poppins', sans-serif;
    justify-content: space-between;
	flex-shrink: 0;
}

footer .contact,
footer .support,
footer .copyright {
    width: 33%;
}

footer .contact > p {
    color: #FFFFFF;
    font-weight: 300;
}

footer .contact .header {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.125em;
    padding-left: 1.4em;
}

footer .contact > .info {
    display: flex;
}

footer .contact > .info p {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 0.813em;
    padding-left: 2em;
}

footer > .support {
    text-align: center;
}

footer > .support button {
    margin-top: 1.7em;
    padding: 1rem;
    border-radius: 3em;
    border: none;
    outline: none;
    font-weight: bold;
    font-size: 1.5em;
    cursor: pointer;
    color: #FFFFFF;
    background: rgba(39, 120, 57, 0.91);
}

footer > .support button:hover {
    background: rgba(37, 85, 47, 0.91);
}

footer > .copyright p {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 0.813em;
    padding-right: 2em;
    float: right;
    padding-top: 4.8em;
}

/* Text-field */
.text-field {
    display: block;
    position: relative;
    margin-top: 2.5rem;
}

.text-field .text-field-label {
    display: inline-block;
    position: absolute;
    top: -0.8rem;
    font-size: 0.75rem;
    color: #5c5c5c;
    width: 100%;
    transition-duration: 100ms;
}

.text-field .text-field-help {
    display: inline-block;
    font-size: 0.75rem;
    color: #5c5c5c;
}

.text-field .text-field-label.selected{
    color: #ab00e9;
}

.text-field.error .text-field-label,
.text-field.error .text-field-label.placeholder,
.text-field.error .text-field-help {
    color: #ff1744;
}

.text-field .text-field-label.placeholder {
    position: absolute;
    top: 0.25rem;
    font-size: 1rem;
    cursor: text;
    color: #767676;
    user-select: none;
}
.text-field.read-only .text-field-label.placeholder,
.text-field.read-only .text-field-input {
    cursor: default;
}

.auth-label.required::after {
    color: #AC00E9;
    content: "*";
}

.text-field .text-field-input {
    box-sizing: border-box;
    width: 100%;
    padding: 0.3rem 0;
    font-size: 1.0em;
    box-shadow:0em 0em 0.2em #ab00e900;
    outline: none;
    border: none;
    border-bottom: 0.063em solid #4d4d4d;
    color: #282828;
    background: transparent;
}
.text-field:not(.read-only) .text-field-input:focus {
    transition-duration: 200ms;
    border-color: #ab00e9;
}
.text-field.read-only .text-field-input {
    color: rgba(0, 0, 0, 0.6);
    border-bottom: 0.063em dotted #4d4d4d;
}

.text-field.read-only .text-field-label {
    color: rgba(0, 0, 0, 0.6);
}


@media screen and (max-width: 1250px) {
    nav {
        margin-right: 50px;
    }
    nav a {
        font-size: 22px;
        padding: 8px 20px;
    }
    .logo h1 {
        font-size: 2.4rem;
        margin-left: 70px;
    }

    footer .contact > .info {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 700px) {
    header {
        height: 5rem;
    }
    .logo h1 {
        font-size: 2.2rem;
        margin: 0px 2rem;
    }

    .menu-toggle {
        position: absolute;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
    }
    .menu-toggle::after {
        content: "";
        top: 0.6rem;
        transition-duration: 200ms;
    }
    .menu-toggle::before {
        content: "";
        top: -0.6rem;
        transition-duration: 200ms;
    }
    .menu-toggle, .menu-toggle::before, .menu-toggle::after {
        position: absolute;
        width: 2.2rem;
        height: 0.25rem;
    
        border-radius: 0.1rem;
        background: white;
        z-index: 5;
    }

    .nav-wrapper {
        display: flex;
        position: fixed;
        align-items: flex-start;
        justify-content: center;
        opacity: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 4;
        pointer-events: none;

        background: rgba(0, 0, 0, 0.92);
        transition-duration: 100ms;
    }

    nav {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding-top: 8rem;
    }

    nav a:hover {
        transition-duration: 200ms;
        background:rgba(255, 255, 255, 0.1);
    }

    footer {
        width: 100%;
        background-color: #5B0877;
        display: flex;
        flex-direction: column;
        font-family: 'Poppins', sans-serif;
        justify-content: space-between;

    }

    footer .contact,
    footer .support,
    footer .copyright {
        width: 100%;
    }
    
    footer .contact {
        text-align: center;
    }
    
    footer .contact .header {
        padding: 0;
        margin-bottom: 0.6rem;
    }
    
    footer .contact > .info {
        display: block;
    }
    
    footer .contact > .info p {
        padding: 0;
        margin: 0;
        margin-bottom: 0.6rem;
    }
    
    footer > .support button {
        margin: 0;
        margin-top: 0.5rem;
        padding: 0.8rem;
        font-weight: bold;
        font-size: 1rem;
        color: #FFFFFF;
    }
    footer > .copyright {
        margin: 0;
        margin-top: 0.5rem;
        text-align: center;
    }
    footer > .copyright p {
        color: #FFFFFF;
        font-weight: 300;
        font-size: 0.813em;
        padding: 0;
        float: unset;
    }
}