/* main content for login form */



:root {
    /* Brand variables*/
    --sopro-green: #31a679;
    --sopro-blue: #3C6FFF;
    --sopro-darkblue: #394063;
    --sopro-red: #F75F4E;
    /* Component colors */
    --headingColor: var(--sopro-darkblue);
    --website-bg-color: var(--sopro-darkblue);
}


a {
    color:#F75F4E;
}

.form-content {
    background-size: cover;
    height: 100vh;
    height: 100vh;
    align-items: center;
    display: flex;
    justify-content: center;
}

/* Main form content*/
.form-fields {
    max-width: 1010px;
    margin: 0 auto;
    text-align: center;
}

/* SoPro login top logo */
.form-content #logo-sopro {
    margin-bottom: 36px;
}

/* Input area field design */
.form-content .form-control {
    height: 50px;
    border-radius: 0;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
}
.form-content .form-control:focus {
    box-shadow: none;
}
    .form-content .form-control::-webkit-input-placeholder {
        color: #A9A9A9;
    }

/* Remember me checkbox inline */
.form-content .d-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.inputicon {
    position: relative;
}

.inputicon .iconsvg {
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
    right:10px;
    width:15px;
}

/* Checkbox style */
.form-content .d-flex input[type=checkbox] {
    margin: 0 6px 0 0;
    margin-top: 1px\9;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 16px;
    height: 16px;
    padding: 3px;
    background-clip: content-box;
    border: 2px solid #bbb;
    border: 0;
    outline: 0;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 1px;
}
    .form-content .d-flex input[type=checkbox]:checked {
        background: url('../Images/checked.png');
        background-size: cover;
    }

/* Changed label weight to default */
.form-content .d-flex label {
vertical-align: middle;
font-weight: 500;
}

/* Green submit button*/
.form-content .btn-signin {
    height: 50px;
    width: 100%;
    border-radius: 100px;
    background: #3C6FFF;
    border: 0;
    font-size: 18px;
    margin-top: 20px;
    position:relative;
}

    .form-content .btn-signin:focus {
    outline:0;
    }

    .form-content .btn-signin img.inputarrow {
        position: absolute;
        right: 10px;
        width: 36px;
        height: 36px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .form-content .btn-signin:hover {
        background: #483cff;
        border: 0;
        border-radius: 100px;
    }

/* OR Text in the middle */
.form-content .text-middle {
    text-align: center;
    font-weight: 700;
    margin: 30px 0;
    text-transform: uppercase;
    font-size: 20px;
    color: #A9A9A9;
}

/* Social buttons */
.form-content .btn-social {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-content .btn-social:hover {
    color:#fff;
}

    .form-content .btn-social:focus {
        outline: 0;
    }


/* Social buttons */
.btn-social > :first-child {
    width: 32px;
    line-height: 34px;
    font-size: 1.6em;
    text-align: center;
    margin-right: 18px;
    margin-top: -5px;
}

.btn-social .btn-google :first-child {
    margin-top: 10px;
}
/* Google button */
.form-content .btn-google {
    height: 50px;
    width: 100%;
    border-radius: 100px;
    border: 1px #C4C4C4 solid;
    background: #FFF;
    font-size: 18px;
    margin-bottom: 10px;
    color: #00000054;
}

.custom-icon-google svg {
    margin-top: 8px;
}

.form-content .btn-google img.inputarrow {
    position: absolute;
    right: 10px;
    width: 36px;
    height: 36px;
    top: 0;
    bottom: 0;
    margin: auto;
}

    .form-content .btn-google:hover {
        /* background:#bf3a29;*/
        border-color: rgb(66, 133, 244);        
        border-radius: 100px;
        color: #000000;
    }


/* Linkedin button */
.form-content .btn-linkedin {
    height: 50px;
    width: 100%;
    border-radius: 100px;
    border: 0;
    background: #0a66c1;
    border: 0;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

    .form-content .btn-linkedin img.inputarrow {
        position: absolute;
        right: 10px;
        width: 36px;
        height: 36px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .form-content .btn-linkedin:hover {
        background: #075482;
        border-radius: 100px;
        border: 0;
    }

/* Register link text */
.form-content .register-link {
    text-align: center;
    padding-top:10px;
}

/*Footer copyright text*/
.form-content .footer-text {
    text-align: center;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
}
body {
    background:url('../Images/login-background.jpg');
    background-size: cover;
    height: 100vh;
    height: 100vh;
    align-items: center;
    display: flex;
    justify-content: center;
}

.form-control:active,
.form-control:focus {
    border-color: var(--sopro-darkblue);
}
.form-control:hover {
    border-color: var(--sopro-darkblue);
}

.custom-icon-google {padding-top:3px}