/* Coded with love by Mutiullah Samim */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-image: url(../img/background_login.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 23px;
}
.user_card {
  height: auto;
  min-height: 480px;
  width: 380px;
  margin-top: auto;
  margin-bottom: auto;
  /* Glassmorphism Effect */
  background: rgba(10, 10, 15, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}
.brand_logo_container {
  height: 230px;
  width: 380px;
  /* background: #60a3bc;
  padding: 10px; */
  text-align: center;
  background-color: #000000ad;
}
.brand_logo {
  height: 125px;
  width: 125px;
  /* border-radius: 50%; */
  /* border: 2px solid white; */
}
.login_btn {
  width: 100%;
  color: white !important;
  background-color: #10B981 !important; /* Verde Tech */
  border: none !important;
  margin-top: 25px;
  margin-bottom: 15px;
  padding: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.login_btn:hover {
  background-color: #059669 !important;
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
}
.login_btn:focus {
  box-shadow: none !important;
  outline: 0px !important;
}
/* .login_container {
  padding: 0 2rem;
} */
/* Tech Inputs */
.login-input {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  padding: 10px 15px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease;
}
.login-input:focus {
  background-color: rgba(0, 0, 0, 0.7) !important;
  border-color: #10B981 !important;
  box-shadow: 0 0 8px rgba(204, 0, 0, 0.4) !important;
  outline: none !important;
}
.login-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.login-label {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #ccc;
  display: block;
}
.input-group-text {
  background: #10B981 !important; /* Verde Tech */
  color: white !important;
  border: 0 !important;
  border-radius: 6px 0 0 6px !important;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #10B981 !important;
}


/* Fix Autofill Chrome oscuro */
.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus,
.login-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #0e1217 inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}
