*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/public/assets/chalmers-login-desktop.jpg");
  background-size: cover;
  background-position: center;
}

.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 24rem;
  padding: 1rem;
  padding-top: 2rem;
  margin: 1rem;
  gap: 1rem;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.card-header .logo-container {
  width: 50%;
  height: 2rem;
  margin: 0 auto;
}

.card-header .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: #242424;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.person-icon {
  width: 42px;
  height: 42px;
  color: #242424;
}

.login-btn {
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: #006c5c;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.login-btn:active {
  background-color: #0c3b5e;
}

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-footer span {
  font-size: 0.75rem;
  text-align: center;
  color: #616161;
}
