body {
  background-color: #f5f5f5;
  font-family: "Segoe UI", sans-serif;
  height: 100vh;
  margin: 0;
  overflow-x: hidden !important;
  padding: 0;
  background: linear-gradient(to bottom right, #ffffff, #fbd9c6);
}
.content {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom right, #ffffff, #fbd9c6);
}

.login-card {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom right, #ffffff, #fbd9c6);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.logo img {
  width: 450px;
  max-width: 100%;
  height: auto;
}

.logo-details {
  padding: 40px 0;
  font-size: 25px;
}

.form-container {
  margin: 0 auto;
  padding: 0px 75px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
  text-align: left;
}

.form-control {
  border-radius: 3rem;
  height: 93px !important;
  padding: 0 29px;
  border: 2px solid #ccc;
  transition: all 0.3s ease;
  width: 100%;
  background: transparent;
  display: block;
  font-size: 2rem;
}

.form-control:focus {
  border-color: #ff6400;
  box-shadow: 0 0 10px rgba(255, 100, 0, 0.3);
  outline: none;
}

.floating-label {
  position: absolute;
  left: 35px;
  top: 18px;
  color: #999;
  font-size: 2rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-control:focus + .floating-label,
.form-control:not(:placeholder-shown) + .floating-label {
  top: -24px;
  left: 24px;
  font-size: 2rem;
  color: #ff6400;
  background-color: #fff6f2;
  padding: 0 5px;
  border-radius: 5px;
}

.btn-orange {
  position: relative;
  overflow: hidden;
  background-color: #ff6400;
  border: none;
  border-radius: 3rem;
  padding: 0 20px;
  font-weight: bold;
  color: white;
  width: 100%;
  height: 92px;
  display: block;
  margin: 15px auto 0;
  z-index: 1;
  transition: color 0.3s ease;
  font-size: 2rem;
}

.btn-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff6400, #ffa366);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-orange:hover::before {
  left: 0;
}

.btn-orange:hover {
  color: #fff;
}

/* Responsive styles for small screens (portrait mobile) */
