body {
  background: white;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  max-width: 400px;
  width: 100%;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
  color: #D60017;
  text-align: center;
}
input[type="text"],
input[type="password"],
input[type="file"] {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
}
button {
  background-color: #D60017;
  color: white;
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 12px;
  font-weight: bold;
}
a {
  word-break: break-all;
  color: #D60017;
}
