﻿* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow: hidden;
    background-color: #F5F5F5;
}

.loginTitle {
    font-family: 'Helvetica', Arial, Lucida, sans-serif;
    font-size: 1.1rem;
    color: #c0392b;
    font-weight: 600;
    margin-top: 2rem;
}

.hr {
    border: 3px solid red;
    border-radius: 5px;
    width: 20px;
    text-align: left;
}

.para {
    font-size: .9rem;
    color: #273044;
    font-weight: 500;
    margin-top: .5rem;
}

.address {
    font-size: .9rem;
    color: #555555;
    font-weight: 500;
    text-align: center;
    line-height: 1rem;
    margin-top: 2rem;
}

/* Set a style for the login button */
.btn-primary {
    background-color: #E6001F;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    min-height: 2.4rem;
    min-width: 25%;
    border: none;
    border-radius: 5px;
    text-align: center;
}

    .btn-primary:hover {
        background-color: rgb(230,0,31,.8);
    }

.topBanerTitle {
    color: #FFFFFF;
    font-size: 4vw;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin: 0px 20px 0px 30px;
    line-height: 4.5vw;
}

.topBannerHr {
    border-left: .7vw solid #E6001F;
    margin-left: 9vw;
    margin-top: 15vw;
    margin-bottom: 8vw;
}

.spancolor {
    color: #00BCD4;
}

/*Form input*/

.input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
}

.icon {
    padding: 10px;
    background: #E8E8E8;
    color: #808080;
    min-width: 50px;
    text-align: center;
    border-radius: 5px;
}

.input-field {
    width: 100%;
    height: 2.4rem !important;
    padding: 10px;
    outline: none;
    background: #f7fafc !important;
    border: rgb(235, 235, 235) 1px solid !important;
}

    .input-field:focus {
        /*border: 2px solid dodgerblue;*/
        box-shadow: 0 0 4px 0 rgba(230, 0, 31, 0.9) !important;
    }

/* Set a style for the submit button */
.btn {
    background-color: dodgerblue;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

    .btn:hover {
        opacity: 1;
    }
