@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
    box-sizing: border-box;
}


html,
body {
    height: 100%;
    background-color: #aeb9ea;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url(/images/build3min.jpg);
    background-repeat: no-repeat;
    align-content: center;
    align-self: center;
    background-color: #c3cbef;
    background-blend-mode: multiply;
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Style the header */
header {
    background-color: #666;
    padding: 30px;
    text-align: center;
    font-size: 35px;
    color: white;
}

img {
    flex: 1;
    height: 100%;
    width: 100%;
}

/* Container for flexboxes */
section {
    display: -webkit-flex;
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*background-image: url(/images/build3min.jpg);
    background-repeat: no-repeat;*/
    align-content: center;
    align-self: center;
    margin: 0;
}

/*#main-wrapper {
    display: -webkit-flex;
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-image: url(/images/build3min.jpg);
    background-repeat: no-repeat;
    align-content: center;
    align-self: center;
    margin: 0;
}*/

.background-tint {
    /*background-color: #c3cbef;
    background-blend-mode: multiply;
    height: 100%;
     Center and scale the image nicely 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
}

.tinted-image {
    background:
        /* top, transparent red, faked with gradient */
        linear-gradient(rgba(255, 0, 0, 0.45),
            rgba(255, 0, 0, 0.45)),
        /* bottom, image */
        url(/images/lilypads.png);
}

.card {
    flex-wrap: wrap;
    display: -webkit-flex;
    display: flex;
    border-radius: 8px;
    flex-wrap: wrap;
}

.main-section {
    display: flex;
    -webkit-display: box;
    -moz-display: box;
    -ms-display: flexbox;
    -webkit-display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 6%;
    background-color: red;
    margin: 0;
}

/* Style the navigation menu */
.brand-section {
    padding: 20px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    max-width: 360px;
    background-color: #181F54;
    align-items: center;
    justify-content: center;
}

/* Style the list inside the menu */
/* nav ul {
list-style-type: none;
padding: 0;
} */
/* Style the content */
.section-form {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 360px;
    background-color: #fff;
    padding: 10px;
}



*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background-color: #FAFAFA;
}

/* body {
font-family: "Quicksand", sans-serif;
font-weight: 500;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
} */
h1 {
    font-weight: 700;
    color: #384047;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 1.2em;
    margin-top: 0.2em;
}

a {
    font-size: 0.98em;
    color: #8a97a0;
    text-decoration: none;
}

a:hover {
    color: green;
}

.container {
    display: flex;
    -webkit-display: box;
    -moz-display: box;
    -ms-display: flexbox;
    -webkit-display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    padding: 6%;
    margin: 0;
}

form {
    background-color: #FFF;
    /*padding: 2em;*/
    /*padding-bottom: 3em;*/
    border-radius: 8px;
    display: flex;
    justify-content: center;
    /* box-shadow: 0 10px 40px -14px rgba(0, 0, 0, 0.25); */
    flex-wrap: wrap;
    flex-direction: column;
}

form input {
    color: #384047;
    background-color: #e8eeef;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
    border: none;
    font-size: 14px;
    border-radius: 4px;
    padding: 1em;
    margin-bottom: 1.2em;
    width: 100%;
}

form input:focus {
    outline: none;
}

.button {
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    color: #FFF;
    background-color: #4bc970;
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 0.8em;
    margin-top: 1em;
    margin-bottom: 1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 200ms ease-in-out;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    -webkit-appearance: none;

}

.button:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.button span {
    position: relative;
    z-index: 1;
}

img {
    align-self: center;
}

.button .circle {
    position: absolute;
    z-index: 0;
    background-color: #35A556;
    border-radius: 50%;
    transform: scale(0);
    opacity: 5;
    height: 50px;
    width: 50px;
}

.button .circle.animate {
    animation: grow 0.5s linear;
}

@keyframes grow {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.button .signup-message {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.alert {
    font-size: 14px;
    padding: .50rem 1rem;
    margin-bottom: 15px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

@media (max-width: 620px){
    .login_parent{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-flex-wrap: inherit;
            -ms-flex-wrap: inherit;
                flex-wrap: inherit;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        /* -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start; */
        padding: 15px;
    }

    .brand-section{
        width: 100%;
        padding: 30px 15px 20px 15px;

        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }

    .section-form{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }

    form{padding: 0;}
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
    section {
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 6%;
    }

    /* .brand-section {
        max-height: 200px;
    } */
}

/*#container {
  position: relative;
}
#container canvas, #login_element {
  position: absolute;
}

#login_element {
    height: 100%;
}*/

.container-fluid {
    padding: 0!important;

}

.page-wrapper {
    min-height: unset!important;
    background: unset!important;
}

body.swal2-height-auto {
    height: 100%!important;
}