﻿body.layoutlogin .first-page{
    background: url(../../Img/firstpage-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
	background-position: 50% center;
}
body.layoutlogin .card{
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    min-width: 300px;
    margin-top: 20vh;
    margin-bottom: 10vh;
}
body.layoutlogin .card h2 {
    font-size: 18px;
    border-bottom: 2px solid #9ebfe3;
    font-weight: bold;
    padding: 10px 5px;
    margin-bottom: 15px;
}
body.layoutlogin .card p {
    font-weight: bold;
    text-align: justify;

}
body.layoutlogin .login-page{
    background-color: midnightblue;
    background-size: cover;
    min-height: 100vh;
    background-position: 50% center;
}
body.layoutlogin .login-page .card {
    background: #fff;
}
body.layoutlogin .login-page .card h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}
body.layoutlogin .card .text-link {
    color: #000;
}
.form-group.input-icon {
    position: relative;
}
.form-group.input-icon:after {
    position: absolute;
    left: 7px;
    color: #ccc;
    font-family: 'Font Awesome 5 Free';
    top: 4px;
    display: block;
    font-weight: 900;
    font-size: 20px;
}
.input-icon#mobile-num:after {
    content: '\f3cd';
}
.input-icon#name-family:after {
    content: '\f007';
}
.input-icon#pass:after,
.input-icon#re-pass:after {
    content: '\f023';
}
@media(max-width: 767px) {
    body.layoutlogin .card {
        max-width: 95%;
    }
}