* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', sans-serif;
}

.contact-bg {
  position: fixed;
  inset: 0;
  background: url('Images/home-blurred.png') no-repeat center center/cover;
  filter: blur(8px) brightness(0.7);
  z-index: 0;
}

.login-container {
  display: flex;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
}

.wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.left-side {
  flex: 1;
  background-image: url('Images/digital_graphic.png');
  background-size: cover;
  background-position: center;
}

.right-side {
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 100%;
  max-width: 300px;
  animation: fadeIn 1s ease-in-out;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1F1F1F;
}

input, button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  border-radius: 5px;
}

input {
  border: 1px solid #ccc;
}

button {
  background-color: #F28C28;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #e07816;
}

.row-links {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.row-links a {
  color: #1F1F1F;
  text-decoration: none;
}

.bottom-links {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
}

.bottom-links a {
  color: #F28C28;
  font-weight: bold;
  text-decoration: none;
}

.error-message {
  color: red;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .login-container { flex-direction: column; }
  .left-side { height: 200px; }
  .right-side { padding: 20px; }
}
