/* Login Form Styles */
body {
  margin: 0px !important;
  padding: 0px !important;
}
body {
 width: 100%;
}
* {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif !important;
}
.login-container {
  min-height: 100vh;
  min-width: 100%;
  /* width: 100%; Ensure full width */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Keep form aligned right */
  position: relative;
  overflow: hidden;
  background-size: cover;      /* Stretch image */
  background-position: center; /* Center crop */
  background-repeat: no-repeat;
  padding: 0; /* Remove padding that shrinks image */
}

.login-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.login-form-container {
  position: relative;
  z-index: 10;
  margin-right: 4rem; /* Move spacing to form instead of container */
  animation: fadeIn 0.3s ease-out;
}

.login-card {
  width: 100%;
  max-width: 24rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
}

.logo-container {
  margin-bottom: 1.5rem;
  text-align: center;
}

.logo-badge {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.input-field {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  padding: 0.625rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.input-field::placeholder {
  color: #6b7280;
}

.input-field:focus {
  outline: none;
  border-color: hsl(210, 100%, 50%);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.login-button {
  width: 80%;
  background-color: hsl(210, 100%, 50%);
  color: white;
  font-weight: 500;
  padding: 0.625rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
}

.login-button:hover {
  background-color: rgba(59, 130, 246, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.MuiButton-root {
  text-transform: none !important;
}
.isRequiredField{
  color: red!important;
}
.table-row-hover {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.table-row-hover:hover {
  background-color: #2e8ce4; /* light blue */
}
.loader-body {
  height: 100%;
  width: 100%;
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  background-color: #00000054;
  z-index: 9999;
}
.loader-parent {
  text-align: center;
  justify-content: center;
  align-items: center;
}
.loader-body {
  position: fixed;        /* stays on top */
  top: 0;
  left: 0;
  width: 100vw;           /* full screen */
  height: 100vh;
  background: rgba(255, 255, 255, 0.7); /* semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999;     /* very high so it covers everything */
  overflow: hidden;
}
