﻿body {
    font-size: 16px;
    letter-spacing:1px;
    overflow-y: auto;
    background-color: rgba(5,0,11,1);
    background: url('/Content/Images/FMT-User_Login_Background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: #fff;
    min-height: 100vh;
}

#lginbg {
    display:flex;
    flex-wrap:wrap;
    background-image: url('/Content/Images/FMT-User_Login_Boat_Satellite.svg');
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 100% 100%;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

#sectionContainer {
    display: flex;
    flex-wrap:wrap;
    flex-direction: row;
    margin: auto auto;
}

#loginForm {
    background: rgba(63, 169, 245, 0.8);
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    max-width: 420px;
    padding: 20px;
    top: 0;
    bottom: 0;
    margin: auto auto;
    right: 0;
    left: 0;
    border: 1px solid rgba(204, 204, 204, 0.3);
    box-shadow: 0px 1px 0px rgba(0,0,0,0.3);
    font-weight: normal;
}

#sectionMobileAppQrCode {
    /*background: rgba(132, 82, 161, 0.5);*/
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    width: 220px;
    padding: 14px 0px 14px 0px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto auto auto 20px;
    border: 2px solid rgba(132, 82, 161, 0.9);
    box-shadow: 0px 1px 0px rgba(0,0,0,0.3);
    font-weight: normal;
    float: left;
    align-content: center;
}

#submitButton {
    height: 40px;
    width: 130px;
    background: rgba(132, 82, 161);
    border: 1px solid rgba(132, 82, 161, 0.48);
    border-radius: 05px;
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.field-validation-error {
    position: absolute;
    right: 15px;
    top: 0px;
    font-size: 10px;
    font-weight: bold;
}

.form-control {
    font-size: 16px;
    font-weight: bold;
    min-height: 43px;
    min-width: 300px;
}
.helpText{
    font-size: 12px;
}

h1 {
    text-align: left;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Media Query for low resolution  Tablets, Ipads 
    https://www.geeksforgeeks.org/how-to-target-desktop-tablet-and-mobile-using-media-query/
*/

@media only screen and (max-width:767px) {
    body {
        overflow: auto;
    }

    #lginbg {
        background-position-y: center;
        padding-top: 25px;
    }

    #sectionContainer {
        flex-direction: column;
        margin: auto auto auto auto;
    }

    .form-control {
        min-width: 250px;
    }

    #lheading {
        display: none;
    }

    #sectionMobileAppQrCode {
        margin: 25px 25px;
    }
}
@media only screen and (max-width: 600px) {
    #sectionMobileAppQrCode {
        display: none;
    }
}


