﻿* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: Source Sans Pro Regular;
    display:flex;
}

#container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

#div-background-gradiant {
    background: #2bc3e8; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #2bc3e8 0%, #1097c4 100%); /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover, #2bc3e8 0%,#1097c4 100%); /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center, #2bc3e8 0%,#1097c4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2bc3e8', endColorstr='#1097c4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height:100%;
    padding-left: 20px;
    padding-right: 20px;
}


.modal-window {
    border-radius: 0px;
    overflow: hidden;
    padding: 30px;
    background: #fff;
    border: 1px solid #e3e3e3;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.16);
    width: 100%;
    min-width: 330px;
    max-width: 475px;
}


.logo-container {
    height: 50px;
    margin-bottom: 20px;
}

.leftSide {
    float: left;
}

.rightSide {
    float: right;
}

.clear {
    clear: both;
}


#scsLogo {
    max-width: 200px;
    float: left;
    max-height: 50px;
}

#tenantLogo {
    max-width: 200px;
    float: right;
    max-height: 50px;
    max-width: 100px;
}



.common-button {
    border: none;
    height: 36px;
    width: 100%;
    background: #4a8adc;
    border-radius: 2px;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Source Sans Pro Regular;
}

    .common-button:hover {
        background: #0c5bc0;
        cursor: pointer;
    }

.text-center {
    text-align:center;
}


.container-group {
    margin-bottom: 15px;
    display: table;
    width: 100%;
}


.table-row {
    display: table-row;
}


.labels {
    font-size: 14px;
    color: #333333 !important;
}


.input-Text {
    margin-top: 5px;
    font-family: Source Sans Pro Regular;
    font-size: 16px;
    width: 100%;
    height: 45px;
    border: 1px solid #c0c0c0;
    border-radius: 2px;
    padding: 0 5px;
}


.page-title {
    text-align: center;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    font-family: Source Sans Pro Semibold;
}

.normal-text {
    font-size: 14px;
    color: #333333;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.messageText {
    color: #689ce1;
    font-size: 14px;
    font-weight: bold;
}



.margin-botton-20 {
    margin-bottom: 20px;
}

.margin-top-15 {
    margin-top: 15px;
}

.errorText {
    margin-top: 15px;
    color: #ff0000;
    font-weight: bold;
    font-size: 14px;
}



