﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:300,300i,400,400i,500,500i,600,600i,700,700i');

body {
    font-family: 'Fira Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #f2f2f2;
    background-image: url(../images/loginbg2.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.logo {
    padding: 10px 100px;
    float: left;
}

    .logo img {
        max-width: 90%;
    }

.logo-text {
    float: left;
    padding-left: 10px;
    margin-top: 10px;
}

    .logo-text h2 {
        font-size: 28px;
        font-weight: 500;
        color: #fff;
    }

        .logo-text h2 span {
            color: rgba(255,255,255,.9);
            font-weight: 300;
            font-size: 18px;
        }

            .logo-text h2 span strong {
                font-weight: 400;
                color: rgba(255,255,255,1);
            }

.loginbox {
    background-color: #fff;
    min-height: 300px;
    box-shadow: 0px 0px 25px rgba(0,0,0,.2);
    padding: 20px;
}

.topmrgin {
    margin-top: 15px;
}

.minusleft {
    margin-left: -50px;
}

.intruction {
    background: #329998;
    background: -moz-linear-gradient(45deg, #329998 0%, #5cd19a 100%);
    background: -webkit-linear-gradient(45deg, #329998 0%,#5cd19a 100%);
    background: linear-gradient(45deg, #329998 0%,#5cd19a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#329998', endColorstr='#5cd19a',GradientType=1 );
    padding: 15px;
    box-shadow: 0px 0px 15px rgba(0,0,0,.2);
    min-height: 300px;
    color: #fff;
}

    .intruction .btn {
        border-radius: 20px;
        background-color: #fff;
        color: #329998 !important;
    }

.loginhead {
    font-weight: 400;
    margin: -20px -20px 15px;
    background-color: #f5f5f5;
    padding: 8px;
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    border-bottom: 1px solid #e0e0e0;
}

.loginform h3 {
    margin-top: 0px;
    font-weight: 400;
    margin-bottom: 15px;
}

    .loginform h3 span {
        font-size: 14px;
        color: #666;
        font-weight: 300;
    }

.loginform label {
    font-weight: 300;
    top: 13px;
}

input[type="date"], input[type="datetime-local"], input[type="email"], input[type="number"], input[type="password"], input[type="search-md"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], textarea.md-textarea {
    font-size: inherit;
    height: 35px;
}

.loginform .md-form {
    margin-bottom: 10px;
}

.btn-rounded {
    border-radius: 20px;
}

.btn-light-green {
    background-color: #37A098 !important;
}

footer {
    position: fixed;
    right: 0;
    left: 0;
    margin: 0px auto;
    bottom: 0;
    padding: 10px 15px;
    border: 1px solid rgba(0,0,0,.1);
    color: #333;
    font-weight: 600;
    font-size: 13px;
}

    footer a {
        color: #000;
    }

.loginform P {
    margin-top: 10px;
}

select, .select.form-control {
    height: 40px;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url(../images/select-dropdwn.png) no-repeat 98% 11px;
    border: 0px solid #ddd;
    box-shadow: none;
    font-size: 15px;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    transition: all .1s linear;
    cursor: pointer;
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: 1rem;
}

@media (max-width:767px) {
    .logo {
        padding: 10px;
    }

        .logo img {
            max-width: 100%;
        }

    footer {
        position: relative;
        padding: 10px 5px;
    }
}

.radio-control label {
    margin-right: 15px;
}

.radio-control {
    border-bottom: 1px solid #bdbdbd;
}
.loginform .btn-group {
    width:100%;
}
.loginform .btn-group .btn {
    padding: 5px 3px;
    margin: -10px 5px 20px 0;
    width:23%;
    text-align:center;
    box-shadow: none;
}

.btn span.glyphicon {    			
	opacity: 0;		
    display:none;		
}
.btn.active span.glyphicon {				
	opacity: 1;	
    display:inline-block;			
}