@import url('https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet');
*{margin: 0; padding: 0;}
body{
    font-size: 14px;
    position: relative;
    line-height: 1.45;
    color: #343434;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
}

/*Header Area*/
header{
    box-shadow: 0px 0px 0px #000;
    padding: 0 30px;
}
.logo img {
    width: auto;
    height: 70px;
    padding: 5px 0;
}

.login button {
    background: #544cf9;
    border: 1px solid #2d23f7;
    border-radius: 30px;
    padding: 5px 25px;
    float:right;
    cursor: pointer;
    transition: .292s ease 0s;
    color: #fff;
}
.login button:hover{
    background: #fff;
    color: #2d23f7;
}
.welcome{
    position: relative;
}
.welcome:after{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0,0,0,.35);
    top: 0;
    left: 0;
}
.welcome img{
    width: 100%;
/*    height: 500px; */
    object-fit: cover;
    object-position: 50% 50%;
    object-position: 0 0;
}



/*Form Area*/
.formArea h2 {
    text-align:  center;
    margin: 30px 0 5px;
    font-size: 2em;
    padding: 0 10px;
}

.formArea p.subHead {
    text-align:  center;
    margin-bottom: 30px;
    padding: 0 15px;
}

form {
    margin: 4px 0 0;
    padding: 0 120px 0 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    display: block;
    width: 100%;
    height: 38px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #111111;
    background-color: transparent;
    background-image: none;
    border: 1px solid #aaa;
    border-radius: 30px;
    -webkit-transition: border-color ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s;
}
input.submit {
    background: #554bf9;
    background: -webkit-linear-gradient(left, #554bf9 0%, #814bf9 100%);
    background: -o-linear-gradient(left, #554bf9 0%, #814bf9 100%);
    background: linear-gradient(to right, #554bf9 0%, #814bf9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#554bf9', endColorstr='#814bf9',GradientType=1 );
    color:  #fff;
    border:  none;
    width: 100%;
    padding: 9px 18px;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
}
.form-control:focus {
    border-color: #6684f2;
    outline: 0;
    box-shadow: 0px 6px 40px -10px #888;
    transition: .292s ease-in 0s;
}
label {
    margin-bottom: 6px;
    color:  #000;
    font-weight: 500;
}

/*Options and Features*/
.optionsAndeFeatures {
    border: 1px solid #e5e5e5;
    padding: 20px 30px 65px;
    margin: 30px 0 0;
}
.optionsAndeFeatures h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.options select {
    width: 100%;
    margin: 0 0 20px;
    border: 1px solid #d5d5d5;
    cursor: pointer;
    padding: 6px;
    border-radius: 3px;
}
.options select:focus {
    outline: 0;
}
.features p i {
    background:  #00dbb0;
    color: #fff;
    font-size:  10px;
    font-weight: 100;
    width:  17px;
    height:  17px;
    text-align:  center;
    vertical-align: text-top;
    line-height:  17px;
    border-radius: 50%;
    margin-right: 6px;
}
.signIn {
    text-align:  center;
    margin: 30px 0 0;
}


/*Footer Area*/
footer {
    border-top: 1px solid #d4d4d4;
    padding: 10px 0;
    margin-top: 80px;
}
footer p {
    margin: 0;
}
footer img {
    height: 80px;
    width:  auto;
    float: right;
}
/*Popup style*/
.modal-open .modal {
    padding: 0!important;
}
.modal-dialog {
    margin-top: 70px;
}
.modal-body {
    overflow-y: auto;
    max-height: 75vh;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-track { background: #e5e5e5;border-radius: 3px; }
.modal-body::-webkit-scrollbar-thumb{ background: #00e4a6; border-radius: 3px; }

/*Responsive Style*/
@media (max-width: 991px) {
	header{
		padding: 0 10px;
	}
    form {padding: 0 0px 0 0px;}
    .modal-dialog {
	    margin-top: 50px;
	}
}
@media (max-width: 767px) {
	header{
		padding: 0 0px;
	}
    footer {
        margin-top: 40px;
    }
    .modal-dialog {
	    margin-top: 15px;
	}
}



#flashMessage{
	color:red;font-size:13px;
}
