body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6fc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  text-align: center;
  color: #2b2d42;
  margin-bottom: 20px;
}

.login-container .error-message {
  color: red;
  text-align: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.login-container form input[type="email"],
.login-container form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.login-container form .password-wrapper {
  position: relative;
}

.login-container form .password-wrapper span {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  font-size: 16px;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #d4af37; /* Gold */
    color: #000; /* Black font */
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-container button:hover {
    background-color: #F8931f; /* Dark gold on hover */
    color: #000; /* Keep black font */
}


.login-container .register-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.login-container .register-link a {
  color: #3f51b5;
  text-decoration: none;
}

.login-container .register-link a:hover {
  color: #303f9f;
}

.login-container .powered {
  text-align: center;
  margin-top: 30px;
  color: #888;
  font-size: 13px;
}
.damerax-fixed-logo {
    position: fixed;
    bottom: 20px;   /* Adjust the bottom position */
    right: 20px;    /* Adjust the right position */
    width: 120px;   /* You can adjust the size of the logo */
    z-index: 9999;  /* Ensure it stays on top of other elements */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.damerax-fixed-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .damerax-fixed-logo {
        width: 100px;  /* Adjust logo size on mobile */
    }
}

