body {
  font-family: Arial, sans-serif;
  height: 100vh;
  background: url("../images/login_img.png") no-repeat center center/cover;
  color: white;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 60px;
  text-align: center;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px;
  text-align: center;
}

.login-container {
  max-width: 350px;
  padding: 10px;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.login__button {
  padding: 10px 30px;
  font-size: 16px;
  background-color: #007bff; /* Change to your desired color */
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login__button:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.rounded-pill {
  border-radius: 50px; /* Makes the button rounded */
}

.login-box {
  position: relative;
}

.login-box input {
  height: 65px;
  font-size: 1.2rem;
  padding-left: 50px; /* Space for the user icon */
  padding-right: 50px; /* Space for the login button */
  border-radius: 25px;
  border: 1px solid #ccc;
  width: 100%;
}

.login-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: white; /* Ensure the icon is visible */
  font-size: 1.2rem;
  pointer-events: none; /* Prevent the icon from interfering with input focus */
}

.login-label {
  display: block;
  margin-bottom: 0px;
  font-size: 1.25rem;
  color: white;
}

.login-btn {
  position: absolute;
  top: 65%;
  right: 0px;
  transform: translateY(-50%);
  background-color: white;
  color: black;
  border: none;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #0056b3;
  height: 66px;
  border-right: 2px solid #ccc; /* Add border only on the right side */
  border-right: none; /* No border on the left side */
  border-top-right-radius: 20px; /* Maintain rounded corner on the left side */
  border-bottom-right-radius: 20px; /* Maintain rounded corner on the left side */
  border-top-left-radius: 0px; /* Keep the top-right corner straight */
  border-bottom-left-radius: 0px; /* Keep the bottom-right corner straight */
}

.bottom-left-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 1.2rem;
  color: white;
}
