/* public/css/login */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body.login-body {
  background: transparent; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#backgroundParallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 110vw;
  height: 110vh;
  background: url('../images/bg_login.png') no-repeat center center;
  background-size: cover;
  z-index: -1;
  transition: transform 0.2s ease;
  will-change: transform;
}


.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  position: relative;
  z-index: 1;
  min-height: 100vh; 
}

.login-card {
  width: 100%;
  max-width: 480px; 
  background: rgba(255, 255, 255, 0.486); 
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.37),     
    inset 0 0 0.5px rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #0b2e59;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInGlass 0.6s ease-out forwards;
}


@keyframes fadeInGlass {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-header {
  margin-bottom: 40px;
  text-align: center;
}

.login-logo {
  max-width: 60px;
  margin-bottom: 10px;
}

.login-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.form-group {
  margin-bottom: 25px;
}

input.form-control {
  height: 50px;
  padding: 12px;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

input.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 1px rgba(11, 46, 89, 0.2);
  border-color: #318cfa;
}

.input-group .btn {
  border-radius: 0 10px 10px 0;
}

.btn-login {
  margin-top: 30px;
  height: 50px;
  font-size: 1.1rem;
  border-radius: 12px;
  background-color: #0b2e59;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: #0b2e59;
  color: #0b2e59;
}
