<style>
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:
  'Segoe UI',
  Roboto,
  sans-serif;
  background:linear-gradient(135deg,#4f46e5 0%,#7c3aed 50%,#9333ea 100%);

  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow-x:hidden;
  padding:20px;
}
#user_name, #pass, #fyearid{
  border-radius:5px;
}
/* login card */

.login-box{
  width:100%;
  max-width:430px;
  background:rgba(255,255,255,0.95);

backdrop-filter:
blur(20px);
padding:35px;
border-radius:14px;
box-shadow:0 15px 45px rgba(0,0,0,0.18);

position:relative;
  z-index:10;
}

/* logo */
.app-brand{
  text-align:center;
  margin-bottom:25px;
}

.app-brand img{
  max-width:220px;
  width:100%;
  height:auto;
}

/* input */
.form-control{
  height:52px;
  border-radius:14px;
  border:1px solid #ddd;
  padding-left:15px;
  font-size:15px;
  box-shadow:none;
  transition:.3s;
}

.form-control:focus{
  border-color:#6d28d9;
  box-shadow:0 0 0 4px rgba(109,40,217,0.12);
}

/* select */
select.form-control{
  cursor:pointer;
}

/* button */

.btn-primary{
  height:52px;
  border:none;
  border-radius:14px;
  font-size:16px;
  font-weight:600;
  background:
linear-gradient(90deg,#4f46e5,#7c3aed);

transition:.3s;
}

.btn-primary:hover{
  transform:
translateY(-2px);

box-shadow:0 8px 20px rgba(79,70,229,0.3
);

}

/* remember */
.checkbox{
  padding-top:10px;
}

.checkbox label{
  font-size:14px;
  color:#444;
}

/* footer links */
.social-auth-links{
  margin-top:20px;
  text-align:center;
  font-size:14px;
}

.social-auth-links a{
  color:#6d28d9;
  font-weight:600;
  text-decoration:none;
  margin:0 8px;
}

.social-auth-links a:hover{
  text-decoration:none;
  opacity:.8;
}

/* alert */
.alert{
  border-radius:12px;
  margin-top:15px;
}

/* online */
#status{
  font-weight:600;
  color:#16a34a;
}

/* marquees */
marquee{
  padding:8px;
  border-radius:5px;
  font-size:14px;
  margin-bottom:8px;
}

/* icons */
.form-control-feedback{
  top:10px;
  right:15px;
}

/* mobile */
@media(max-width:768px){
.login-box{
  padding:25px;
  border-radius:8px;
}

.app-brand img{
  max-width:180px;
}

body{
  padding:15px;
}

}

/* ===== reCAPTCHA RESPONSIVE FIX ===== */
.g-recaptcha {
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

/* Mobile scaling */
@media (max-width: 600px) {
  .g-recaptcha {
    transform: scale(0.78);
    -webkit-transform: scale(0.78);
    width: 100% !important;
  }
}

</style>