/* body {
    font-family: sans-serif;
    background-color: #2f4f4f;
}

.logo {
    height: 50px;
    margin: 30px auto;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 45px;
}

.logo > h1 {
    color: #121916;
}

.login-block {
    width: 428px;
    padding: 20px;
    background: #ffffff85;
    border-radius: 5px;
    border-top: 5px solid #ff656c;
    margin: 0 auto;
    margin-top: 116px;
}

.login-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 300;
}

.login-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Montserrat;
    padding: 0 20px 0 50px;
    outline: none;
    color: #4c4c4c;
}

.login-block input#username {
    background: #fff url('/login/login2/user.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#username:focus {
    background: #fff url('/login/login2/user.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #fff url('/login/login2/pwd.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fff url('/login/login2/pwd.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #ff656c;
}

.footer {
    margin-top: 22px;
    color: rgb(68, 88, 88);
}

.footer > div > h5 {
    text-align: center;
}

.footer > div > h5 > a {
    color: rgb(38, 49, 49);
}

.txt-left {
    text-align: left;
}

.login-block button {
    height: 40px;
    background: #ff656c;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #e15960;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    font-family: sans-serif;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #ff7b81;
}

.sel {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    background: none;
    color: #4c4c4c;
    padding: 7px 20px;
    font-size: 14px;
}

.elm:hover {
    border-color: red;
}

.lbl {
    font-size: 15px;
    color: #8e8d8d;
    line-height: 40px;
}

.one {
    width: 40%;
    text-align: right;
    padding-right: 10px;
    display: table-cell
}

.two {
    width: 60%;
    text-align: right;
    padding-right: 10px;
    display: table-cell
}

.top {
    display: inline-flex;
    width: 100%;
    margin-bottom: 20px;
}

.res {
    width: 100%;
    font-size: 15px;
    padding: 40px;
    color: #777070;
}

.no-dis {
    display: none;
}

.forgotten {
    width: 100%;
    text-align: right;
    padding-top: 5px;
    text-decoration: underline;
    font-size: 12px;
    color: #29467b;
} */



/* THIS IS NEW ONE ---------- */



/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* Background */
body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

/* Blur background image */
.bg-image{
    position:fixed;
    inset:0;
    background-image:url('<%=loginImg%>');
    background-size:cover;
    background-position:center;
    filter:blur(6px) brightness(0.6);
    z-index:-1;
}

/* Glass card */
.login-block{
    width:450px;
    height: 490px;
    padding:40px 35px;
    border-radius:22px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    color:white;
    text-align:center;
}

/* Logo */
.logo img{
    height:75px;
    margin-bottom:15px;
}

/* Title */
.login-block h1{
    font-weight:500;
    margin-bottom:25px;
    font-size:20px;
}

/* Input container */
.input-group{
    position:relative;
    margin-bottom:22px;
}

/* Rounded input */
.login-block input{
    width:100%;
    padding:14px 18px;
    border-radius:40px;
    border:1px solid rgba(255,255,255,0.3);
    background:rgba(255,255,255,0.08);
    color:white;
    outline:none;
    font-size:14px;
    transition:0.25s;
}

/* Placeholder */
.login-block input::placeholder{
    color:#dcdcdc;
}

/* Focus effect */
.login-block input:focus{
    border:1px solid #4facfe;
    box-shadow:0 0 12px rgba(79,172,254,0.6);
    background:rgba(255,255,255,0.12);
}

/* Login button */
.login-block button{
    width:100%;
    padding:14px;
    border-radius:40px;
    border:none;
    background: linear-gradient(135deg,#4facfe,#00f2fe);
    color:white;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

/* Hover animation */
.login-block button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,242,254,0.6);
}

/* Forgot password */
.forgotten{
    margin-top:15px;
    font-size:13px;
}

.forgotten a{
    color:#e6f2ff;
    text-decoration:none;
    transition:0.3s;
}

.forgotten a:hover{
    color:#00f2fe;
}

/* Footer */
.footer{
    margin-top:25px;
    font-size:12px;
    color:#ddd;
}

.footer a{
    color:#9adfff;
    text-decoration:none;
}






