html {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
}

::selection {
    color: white;
    background: #1751ff;
}

::-moz-selection {
    color: white;
    background: #1751ff;
}


body {
    background: url("resources/Millennium.jpg"), linear-gradient(to left, #113bbb, #0c2160);
    background-size:100% 100%;
    background-position: left 0, 0 0, 0 0;
    background-repeat: no-repeat;
}

.main-container {
    display: flex;
    flex-direction: row;
    width: 1024px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.432);
    border-radius: 4px;
    margin: 10% auto;
    z-index: +1;
}

.inner-container { 
    width: auto;
    height: auto;
    padding: 100px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: +1;
}

.left {
    flex: 0 0 50%;
    align-items: center;
    justify-content: space-between;
    padding: 50px 50px;
}

.left > div > i.fab {
    font-size: 28px;
    margin: 30px 40px;
    color: white;
    cursor: pointer;
}


.right {
    flex: 1;
    padding-left: 25px;
    padding-right: 25px;
}

.line {
    width: 2px;
    height: 400px;
    margin-top: 5%;
    background-color: white;
}

.header {
    font-size: 70px;
    margin-top: 50px;
    margin-bottom: 0;
    color: white;
    font-weight: lighter;
}

.subtitle {
    font-size: 18px;
    margin: 10px auto;
    text-align: center;
    color: rgb(226, 226, 226);
}

.col {
    width: 100%;
    height: auto;
    margin-bottom: 25px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.col > label {
    
    color: white;
    font-size: 18px;
    margin-bottom: -5px;
    font-family: inherit;    
}

.col:last-of-type {
    flex-direction: row;
    justify-content: space-between;
}

.col > i {
    position: relative;
    top: 30px;
    left: 10px;
    padding-right: 15px;
    color: #0c2160;
    border-right: 1px solid lightgray;
}

.formLink {

    color: white;
    font-size: inherit;
    text-decoration: none;

}

.formLink:hover, 
.formLink:active {
    color: rgb(197, 191, 191);
}

.formLink > span {
    color: #1751ff;
}

.customInput {

    width: 84.3%;
    height: 30px;
    padding: 5px 5px 5px 50px;
    border: 1px solid white;
    border-radius: 3px;

    font-size: 19px;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.customInput:focus {
    border-color: #47cbfc;
    box-shadow: 0px 0px 15px 2px #47cbfc;
}

.loginBtn {
    width: 100%;
    height: 42px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 3px;
    font-size: 20px;
    color: white;
    cursor: pointer;

    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}

.loginBtn:hover {
    background-color: #0d4fff;
    border: 1px solid #0044ff;
    color: white;
}

@media only screen and (max-width: 750px) {

    .line {
        opacity: 0;
    }

    .main-container {
        flex-flow: row wrap;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 30% 0px;
    }

    .inner-container.left {
        display: none;
    }

    .inner-container.right {
        align-items: center;
        padding: 5px;
    }

    .customInput {

        width: 82.6%;
    }
}