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

body {
  display: flex;
  flex-direction: row;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

.sidebar {
  max-width: 480px;
  min-width: 320px;
  width: 25%;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100vh - 45px);
  justify-content: space-between;
  padding: 40px;
}

.ortec-logo-header {
  height: 40px;
  width: 120px;
}

.ortec-logo-footer {
  height: 40px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.content h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: red;
}

.content .subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

dl {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

dt {
  font-weight: 700;
  margin-top: 8px;
}

dd {
  margin-left: 0;
  margin-bottom: 4px;
}

dd a {
  color: #1a73e8;
}

.media {
  flex: 1;
  background-size: cover;
  background-position: 50%;
  background-image: url("assets/login_dna.webp");
}
