* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    height: 100vh;
    background-color: rgb(32, 35, 48);
}

#logo {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fill 2s ease forwards 15s;
    z-index: 49;
}

#logo path:nth-child(1) {
    stroke-dasharray: 596;
    stroke-dashoffset: 596;
    animation: line-anim 3.5s ease forwards;
}

#logo path:nth-child(2) {
    stroke-dasharray: 458;
    stroke-dashoffset: 458;
    animation: line-anim 3.5s ease forwards 0.8s;
}

#logo path:nth-child(3) {
    stroke-dasharray: 113;
    stroke-dashoffset: 113;
    animation: line-anim 3.5s ease forwards 1.6s;
}

#logo path:nth-child(4) {
    stroke-dasharray: 498;
    stroke-dashoffset: 498;
    animation: line-anim 3.5s ease forwards 2.4s;
}

#logo path:nth-child(5) {
    stroke-dasharray: 444;
    stroke-dashoffset: 444;
    animation: line-anim 3.5s ease forwards 3.2s;
}

#logo path:nth-child(6) {
    stroke-dasharray: 228;
    stroke-dashoffset: 228;
    animation: line-anim 3.5s ease forwards 4.0s;
}

#logo path:nth-child(7) {
    stroke-dasharray: 269;
    stroke-dashoffset: 269;
    animation: line-anim 3.5s ease forwards 4.8s;
}

#logo path:nth-child(8) {
    stroke-dasharray: 458;
    stroke-dashoffset: 458;
    animation: line-anim 3.5s ease forwards 5.6s;
}

#logo path:nth-child(9) {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: line-anim 5s ease forwards 6.4s;
}

#logo path:nth-child(10) {
    stroke-dasharray: 498;
    stroke-dashoffset: 498;
    animation: line-anim 3.5s ease forwards 7.2s;
}

#logo path:nth-child(11) {
    stroke-dasharray: 199;
    stroke-dashoffset: 199;
    animation: line-anim 3.5s ease forwards 8.0s;
}

#logo path:nth-child(12) {
    stroke-dasharray: 290;
    stroke-dashoffset: 290;
    animation: line-anim 3.5s ease forwards 8.8s;
}

#logo path:nth-child(13) {
    stroke-dasharray: 363;
    stroke-dashoffset: 363;
    animation: line-anim 3.5s ease forwards 9.6s;
}

@keyframes line-anim {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    from {
        fill: transparent;
    }

    to {
        fill: powderblue;
    }
}

.login {
    width: 400px;
    max-width: 90vw;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    z-index: 50;
}

.login h1 {
    text-align: center;
    color: #5b6574;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
    z-index: 50;
}

.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    z-index: 50;
}

.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3274d6;
    color: #ffffff;
    z-index: 50;
}

.login form input[type="password"],
.login form input[type="text"] {
    width: 310px;
    max-width: 70vw;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
    z-index: 50;
}

.login form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #3274d6;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
    z-index: 50;
}

.login form input[type="submit"]:hover {
    background-color: #2868c7;
    transition: background-color 0.2s;
    z-index: 50;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 70;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    z-index: 70;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    z-index: 70;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    z-index: 70;
}


/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 70;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    z-index: 70;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


.large-header {
    position: relative;
    width: 100%;
    background: #111;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.main-title {
    position: absolute;
    margin: 0;
    padding: 0;
    color: #F9F1E9;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.demo .main-title {
    text-transform: uppercase;
    font-size: 4.2em;
    letter-spacing: 0.1em;
}

.main-title .thin {
    font-weight: 200;
}

@media only screen and (max-width: 768px) {
    .demo .main-title {
        font-size: 3em;
    }
}

.myButton {
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    background: #3274d6;
    padding: 10px;
    border-radius: 50px;
    display: inline-block;
    border: none;
    transition: all 0.4s ease 0s;
    align-content: center;
    align-self: center;
    left: 50%;
}

.myButton:hover {
    text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 5px 40px -10px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 5px 40px -10px rgba(255, 255, 255, 1);
    transition: all 0.4s ease 0s;
}