/* ==============================
   Hartron Skill Centre ERP
   Login CSS
============================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

height:100vh;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

background:#005BAC;

background-image:

linear-gradient(rgba(0,91,172,.75),rgba(0,91,172,.85)),

url("../images/login-bg.jpg");

background-size:cover;

background-position:center;

background-repeat:no-repeat;

position:relative;

}

/* Dark Overlay */

.background-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.25);

backdrop-filter:blur(2px);

}

/* Center */

.login-wrapper{

width:100%;

display:flex;

justify-content:center;

align-items:center;

position:relative;

z-index:10;

}

/* Login Card */

.login-box{

width:420px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(18px);

border-radius:18px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.35);

border:1px solid rgba(255,255,255,.25);

padding:35px;

position:relative;

}

/* Moving White Line */

.top-line{

position:absolute;

left:-40%;

top:0;

height:4px;

width:40%;

background:#ffffff;

animation:lineMove 2.2s linear infinite;

box-shadow:0 0 18px #fff;

}

@keyframes lineMove{

0%{

left:-40%;

}

100%{

left:110%;

}

}

/* Logo */

.logo{

width:95px;

margin-bottom:15px;

}

/* Heading */

.login-box h3{

font-size:28px;

font-weight:700;

color:#fff;

margin-bottom:5px;

}

.login-box p{

color:#f8f9fa;

font-size:15px;

margin-bottom:25px;

}

/* Labels */

.form-label{

color:#fff;

font-weight:500;

}

/* Input Group */

.input-group{

margin-bottom:15px;

}

.input-group-text{

background:#005BAC;

color:#fff;

border:none;

}

.form-control{

height:50px;

border:none;

font-size:15px;

}

.form-control:focus{

box-shadow:none;

border:2px solid #005BAC;

}
/* ===========================
   Login Button
=========================== */

.btn-login{

width:100%;

height:50px;

background:#005BAC;

border:none;

color:#fff;

font-size:16px;

font-weight:600;

border-radius:8px;

transition:.3s;

}

.btn-login:hover{

background:#00498b;

transform:translateY(-2px);

box-shadow:0 10px 20px rgba(0,91,172,.35);

}

/* ===========================
   Home Button
=========================== */

.home-btn{

border:1px solid rgba(255,255,255,.5);

color:#fff;

padding:10px 20px;

border-radius:8px;

transition:.3s;

text-decoration:none;

display:inline-block;

}

.home-btn:hover{

background:#fff;

color:#005BAC;

}

/* ===========================
   Forgot Password
=========================== */

.forgot-link{

color:#fff;

text-decoration:none;

font-size:14px;

}

.forgot-link:hover{

text-decoration:underline;

color:#ffffff;

}

/* ===========================
   Footer
=========================== */

.login-footer{

margin-top:30px;

text-align:center;

color:#fff;

font-size:13px;

line-height:24px;

opacity:.95;

}

/* ===========================
   Alert
=========================== */

.alert{

border-radius:8px;

font-size:14px;

}

/* ===========================
   Placeholder
=========================== */

::placeholder{

color:#888;

}

/* ===========================
   Scrollbar
=========================== */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:#005BAC;

border-radius:20px;

}

/* ===========================
   Animation
=========================== */

.login-box{

animation:zoomIn .8s ease;

}

@keyframes zoomIn{

0%{

opacity:0;

transform:scale(.8);

}

100%{

opacity:1;

transform:scale(1);

}

}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

.login-box{

width:95%;

padding:25px;

}

.logo{

width:75px;

}

.login-box h3{

font-size:22px;

}

.login-box p{

font-size:14px;

}

.form-control{

height:46px;

}

.btn-login{

height:46px;

}

}

/* ===========================
   Desktop
=========================== */

@media(min-width:1200px){

.login-box{

width:440px;

}

}