body {
  background: linear-gradient(135deg, #6e7278 0%, #4a5568 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 600px;
  margin: 20px auto;
  background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

h1, h2 {
  color: #1a202c;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

h1 {
  font-size: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 1.5rem;
  color: #4a5568;
}

button {
  background: linear-gradient(135deg, #cc2914 0%, #e53e3e 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(204, 41, 20, 0.3);
}

button:hover {
  background: linear-gradient(135deg, #b83422 0%, #c53030 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(204, 41, 20, 0.4);
}

button:active {
  transform: translateY(0);
}

input[type=email] {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  width: calc(100% - 120px);
  margin-right: 12px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
  outline: none;
}

input[type=email]:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

form {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#image-container img {
  display: block;
  margin: 24px auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  transition: transform 0.3s ease;
}

#image-container img:hover {
  transform: scale(1.05);
}

#assignments {
  margin-top: 40px;
}

.assignment-item {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.assignment-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.assignment-item img {
  max-width: 80px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.assignment-item strong {
  color: #2563eb;
  font-size: 1.1rem;
  font-weight: 600;
}

.assignment-item p {
  margin: 0;
  color: #4a5568;
  font-size: 0.9rem;
}

/*# sourceMappingURL=Styles.css.map */
