html,body {
    margin: 0;
    height: 100%;
}

.blue-color {
    background-color: #005eb8;
}

.header-img {
    height: 50px;
    position: fixed;
    z-index: 1;
    top: 0;
    width: 100%;
    align-items: center;
    display: flex;
    padding-left: 28px;
}

.flex-container {
    display: flex;
    background-color: DodgerBlue;
}

.flex-container>div {
    background-color: #f1f1f1;
    margin: 10px;
    padding: 20px;
    font-size: 30px;
}

.section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 93vh;
    width: 100vw;
    flex-direction: column;
}

.content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 70%;
}

.login-tags {
    width: 417px;
    /* min-height: 338px; */
    /* max-height: 400px; */
    background: inherit;
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(204, 204, 204, 1);
    border-radius: 3px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    padding: 10px 24px;
}

.img-container {
    padding-bottom: 5px;
    width: 510px;
}

.fnt-name {
    font-family: 'SourceSansPro-Regular', 'Source Sans Pro', sans-serif;
}

label {
    border-width: 0px;
    padding-bottom: 8px;
    padding-top: 21px;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #191919;
}

.text-con {
    display: flex;
    flex-direction: column;
    position: relative;
    .form-control{
        font-size: 0.85rem;
    }
}

.text-row-con {
    display: flex;
    flex-direction: row;
}

.text-row-con label {
    padding-top: 11px;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.footer-content-web {
    display: flex;
    justify-content: center;
    font-family: 'Amadeus-Regular', 'Amadeus', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #7F7F7F;
}
.sub-label {
    font-size: 12px;
    color: #7F7F7F;
    padding-bottom: 6px;
}

input {
    height: 43px;
    text-transform: none;
    border: 1px solid rgb(128, 128, 128);
    padding-left: 6px;
}

::placeholder {
    font-family: SourceSansPro-Italic, "Source Sans Pro Italic",
        "Source Sans Pro", sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: rgb(128, 128, 128);
    text-align: left;
}

button {
    width: 100%;
    height: 37px;
}

.btn-container {
    padding-top: 15px;
}

.footer-div {
    padding-top: 10px;
}

.btn {
    /* color: #fff; */
    background-color: #e8e8e8;
    color: rgb(153, 153, 153);
    border: none;
}

.btnblue {
    border: none;
    background-color: #005eb8;
    color: #fff;
}

.img-logo {
    height: 80px;
}

.error {
    font-size: 12px;
}

.truble-comm {
    background-color: rgba(254, 242, 245, 1);
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(236, 14, 14, 1);
    border-radius: 3px;
    font-size: 12px;
}

.truble-account {
    padding: 23px;
    max-height: 81px;
    min-height: 81px;
}

.password-wrong {
    padding: 11px;
}

.error-icon {
    width: 34px;
    height: 17px;
    display: flex;
    color: #EC0E0E;
}

.trouble-msg {
    display: flex;
    justify-content: flex-start;
    font-family: 'SourceSansPro-Regular', 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 20px;
}

.red {
    color: #555555;
}

.contact-customer {
    padding-left: 35px;
}

.login-error {
    padding-top: 11px;
    font-size: 12px;
    color: red;
}

.footer-links {
    color: #005EB8;
    cursor : pointer;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 200px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    background-color : #ffffff;
}
.dropdown-content a {
    color: black;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    font-size : 13px;
}
.dropdown-content a:hover {background-color: #ddd;}
.show {display: block;margin-top: 6px;}
.alert {
    margin-top: 55px;
    padding: 10px;
    background-color: #c2e79e;
    width: fit-content;
    border-radius: 7px;
    border-style: solid;
    border-width: thin;
    border-color: #24c324;
    margin-left: auto;
    margin-right:auto;
}
.closebtn {
    margin-left: 15px;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.closebtn:hover {
    color: black;
}
.passwordMsgWrapper {
    width: 100%;
    position: absolute;
}
#passwordToggler{
    position: absolute;
    right: 10px;
    bottom: 11px;
    cursor: pointer;
    color: #005eb8;
}
::-ms-reveal {
    display: none;
}
.img-logo-mobile{
    display: none;
}
.footer-div-mobile{
    display: none;
}

/* styling for Mobile applications */
@media (max-width: 884px) {
    html{
        overflow-y: hidden;
    }
    body {
        --bs-body-bg: #000835; /* Sets body background to blue */
    }
    @font-face {
            font-family: "Amadeus Neue";
            /* added relative path for font file */
            src:url("../fonts/AMADEUSNEUE-REGULAR.TTF") format("truetype");
    }
    .header-img{
        display: none;
    }
    .section-wrapper {
        padding: 10px;
        height:  80%;
        width: 100%;
        margin-top: 15%;
    }
    .content-container {
        width: 100%;
        padding: 10px;
        height: auto;
    }
    .login-tags {
        width: 100% !important;
        padding: 10px;
        box-sizing: border-box;
        background-color: unset;
        border: none;
            form {
                margin: 20px 0px;
            }
    }
    ::placeholder,
        .fnt-name {
        font-family: "Amadeus Neue";
    }
    .img-container {
        width: 100% !important;
        display: contents;
        align-items: center;
    }
    .img-logo-mobile{
        display: block;
    }
    .img-logo {
        display: none;
    }
    input[type="text"],
    input[type="password"],
    button {
        width: 100% !important;
        font-size: 16px;
        font-family:"Amadeus Neue";
    }
    input[type="text"],
    input[type="password"]{
        border-radius: 4px;
        border: 1px solid #D9D9D9;
        background: #FFF;
    }
    .btn-container{
        button {
            border-radius: 4px;
            color: #fff !important;
            background: #3A8BFF !important;
        }
    }
    label {
        color: #FFF;
        font-family: "Amadeus Neue";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .form-control:focus{
        color: #000835 !important;
        background-color: #fff !important;
    }
    .text-con {
        width: 100%;
    }  
    .footer-div{
        display: none;
    }
    .footer-div-mobile{
        font-size: 16px;
        display: flex;
        text-align: center;
        justify-content: center;
    }
    .footer-content-web{
        display: flex;
        font-family: "Amadeus Neue";
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        text-align: center;
        color: #B3B3B3;
        margin: 0px 20px;
        a {
            display: none;
        }  
    }
    .footer-links{
        color: #3A8BFF;
        text-align: center;
        width: fit-content;
        font-family: "Amadeus Neue";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        padding: 7px;
    }
}

