html, body {
    height: 100%;
}		
body {
    margin: 0;
    padding: 0;
    font-family: futura-pt,sans-serif;
    background-color: #f2f2f2;
    color: #626262;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Gradient Background */
    background: linear-gradient(-45deg, #2b2838, #d52a2f, #38354A, #242424);

    /* Animted Gradient Background */
     background: linear-gradient(-45deg, #2b2838, #d52a2f, #38354A, #242424);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;	

    /* Circle Background */
/*     background-image: url('~/../../../../img/login/motivair-login-bg.png');
    background-size: cover;
    background-repeat: no-repeat; */

    /* Hexagon Background */
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%239C92AC' fill-opacity='0.25' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(to right top, #38354a, #2b2c31, #423d45, #2b2838, #38354a);
    background-blend-mode: hard-light; */

    /* Carbon Fiber Background */
/*     background:
        linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
        linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px,
        linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px,
        linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px,
        linear-gradient(90deg, #1b1b1b 10px, transparent 10px),
        linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424);
    background-color: #131313;
    background-size: 20px 20px; */
        
}
/* Animted Background */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}		
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;			
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    margin: 100px;	
}
.left {
    flex: 1;
    background-color: #fff;			
    padding: 80px 0px;
    border-radius: 24px 0 0 24px;
    text-align: center;

    /* From https://css.glass */
    /* background: rgba(255, 255, 255, 0.2);
    border-radius: 16px 0 0 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3); */
}	
.left-container {
    max-width: 500px;
    margin: 0 auto;
}	
.right {
    flex: 1;			
    color: #ffffff;
    display: flex;			
    align-items: center;
    justify-content: center;
    text-align: center;			
    border-radius: 0 16px 16px 0;
    position: relative;
}
h1 {
    font-size: 1.4rem;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 500;
}
h2 {
    font-size: 1.1rem;
    margin: 0 0 40px 0;
    font-weight: 300;
}		
.left-logo {
    width: 250px;
    margin-bottom: 20px;
}
form {
    margin: 0 auto;
}
/*form i {
    position: absolute;
}*/
.icon {
    padding: 16px 0;
    min-width: 40px;
}
label {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    text-align: left;
}
input[type=text], input[type=password] {
    padding: 10px 10px 10px 30px;
    width: 100%;
    border: 1px solid #cccccc;
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
    height: 48px;
}
input[type=submit] {
    background-color: #d52a2f;
    color: #ffffff;
    padding: 16px;
    border: 2px solid #d52a2f;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    box-shadow: 0px 4px 10px rgba(249, 2, 2, 0.5);
    transition: 0.5s;
}
button.submit-button {
    background-color: #d52a2f;
    color: #ffffff;
    padding: 16px;
    border: 2px solid #d52a2f;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    box-shadow: 0px 4px 10px rgba(249, 2, 2, 0.5);
    transition: 0.5s;
    box-sizing: border-box;
    max-width: 100%;
}
input[type=submit]:hover {
    background: #353535;
    color: #fff;
    border-color: #353535;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);		
}
.signup-content-container {
    margin: 40px 0;
}
a {
    color: #d52a2f;
    cursor: pointer;
}
.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 1.5em;
    opacity: .5;
}
.hr-text::before {
    content: '';			
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}
.hr-text::after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 .5em;
    line-height: 1.5em;			
    color: #818078;
    background-color: #ffffff;
}
.video-overlay{
    position: absolute;			
    width: 100%;
    height: 100%;
    background: rgba(17, 92, 138, 0.7);
    border-radius: 0 24px 24px 0;
}
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0 24px 24px 0;
}
.right-content {
    margin-top: 300px;
}
.right-title {
    font-size: 1.5rem;
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 6px black;
}
@media screen and (max-width: 1200px) {
    .left-container {
        padding: 0 40px;
    }
}
@media screen and (max-width: 992px) {
    .container {
        width: 100%;
    }			
    .left {
        order: 1;
        border-radius: 16px;
    }			
    .right {				
        display: none;
    }
    form {
        max-width: 100%;
    }
}

.form-control-error {
    background: #fb434a;
    padding: 5px 8px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    right: 0;
    top: 0px;
    margin-bottom: 8px;
    max-width: 100%;
    color: white;
    font-size: 80%;
    z-index: 1;
}