* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ----- CARD CONTAINER ----- */
.login-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  width: 90%;
  max-width: 380px;
  overflow: hidden;
}

/* ----- HEADER ----- */
.header {
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1.5rem 1rem;
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
  background-image: url("https://artsupport.nl/wp-content/uploads/2024/10/markus-spiske-UCbMZ0S-w28-unsplash.webp");
  background-position: center center;
}

.header img {
  width: 120px;
  height: auto;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.header p {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* ----- LOGIN CONTENT ----- */
.login-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.3rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

input:focus {
  border-color: #4f46e5;
}

button {
  width: 100%;
  padding: 0.8rem;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #4338ca;
}

.bottom-text {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

.bottom-text a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

.bottom-text a:hover {
  text-decoration: underline;
}

.bottom_message {
	bottom: 0;
	display: block;
	height: 65px;
	line-height: 63px;
	width: 100%;
	position: fixed;
	background-color: black;
	clear: both;
	opacity:0.9;
	text-align: center;
	color: white;
	font-size: 20px;
	z-index: 10001;
	font-family: Arial;
	display: none;
}

/* ----- SWITCH TOGGLE ----- */
.switch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #374151;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  border-radius: 24px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #4f46e5;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

@media (max-width: 480px) {
  .header h1 { font-size: 1.3rem; }
  .header img { width: 100px; }
}