/* Reset & Grundlegendes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #8A0000;
  font-family: 'Oswald', Helvetica, Arial, sans-serif;
  color: #fff;
}

/* Seiten-Container */
#th14page {
  min-width: 300px;
}

/* Optionaler Header */
#ht14header {
  height: 6em;
  background: url('header-bg.jpg') center/cover no-repeat;
}

/* Main-Bereich */
#main {
  padding: 2rem 1rem;
}

/* Header-Content: drei Zeilen, weiß, Times, zentriert */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.header-title,
.header-subtitle {
  font-family: 'Times New Roman', Times, serif;
  color: #fff;
}
.header-title {
  font-size: 6rem;
  margin-bottom: 1rem;
}
.header-icon {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}
.header-subtitle {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Login-Box: weiß, Arial, schwarz, zentriert, 300px breit, 3:4 */
.login-box {
  width: 600px;
  aspect-ratio: 4/3;
  background: #fff;
  color: #000;
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.login-form {
  display: flex;
  flex-direction: column;
}
.form-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.login-form label {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.login-form input[type="text"],
.login-form input[type="password"] {
  margin-top: 0.25rem;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-form button {
  margin-top: 1.5rem;
  align-self: flex-end;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #8A0000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.login-form button:hover {
  background: #6e0000;
}

/* Footer */
#th14footer {
  background: #8A0000;
  padding: 1rem;
  text-align: left;
}
#th14footer a {
  color: #fff;
  text-decoration: none;
  margin-right: 1rem;
}
#th14footer a:hover {
  text-decoration: underline;
}
