/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Centered full-screen container */
html,
body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background: rgba(128, 207, 240, 0.15);
}

/* Main container */
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Login form container */
.login-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  box-sizing: border-box;
}

.login-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 20px auto;
}

.login-container form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
}

.login-container label {
  margin-bottom: 5px;
  margin-top: 15px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(214, 47, 135, 0.3);
  border-radius: 10px;
}

.login-container button {
  padding: 8px 15px;
  background-color: #d62f87;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  align-self: center;
  margin-top: 20px;
}

.login-container button:hover {
  background-color: #e60073;
}

/* Style for "forgot password" link */
.forgot-password {
  text-align: right; /* Align the link to the right; adjust as needed */
  margin-top: -5px; /* Adjust vertical spacing to your preference */
  margin-bottom: 10px;
}

.forgot-password a {
  color: #d62f87; /* Matches the button color */
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7; /* Lower opacity for a more subtle appearance */
  transition: opacity 0.2s ease; /* Smooth transition on hover */
}

.forgot-password a:hover {
  opacity: 1; /* Fully visible on hover */
  text-decoration: underline;
  color: #e60073; /* Slightly darker on hover (matches button hover color) */
}

/* Bottom image container */
.bottom-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bottom-image {
  width: 100%;
  height: auto;
}

/* Media queries for responsiveness */
@media (max-width: 600px) {
  .login-container {
    padding: 10px 15px;
  }

  .login-container button {
    margin-top: 15px;
  }

  .login-container label,
  .login-container button {
    font-size: 14px;
  }
}
