/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
}

/* Set background color */
body {
  background-color: #1f2937; /* Change this color if you want */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container ensures centered alignment */
.container {
  text-align: center;
}

/* Logo styling */
.logo {
  max-width: 230px;
  width: 100%;
  height: auto;
}

.top-right {
  position: absolute;
  top: 20px;
  right: 20px;
}

.contact-link {
  color: white;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
}

.contact-link:hover {
  text-decoration: underline;
}

.container {
  color: white;
}

/* Large text styling */
.logo-text {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.1rem;
}

.login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.login-form {
  width: 100%;
  max-width: 400px;
}

.login-form h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.login-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
}

.login-form button {
  width: 100%;
  background-color: #3b82f6;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #2563eb;
}