* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #f3e5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container,
.form-card {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

h1,
h2 {
  color: #572975;
  text-align: center;
  margin-bottom: 20px;
}

input,
button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 1em;
}

input {
  border: 1px solid #ccc;
}

button {
  background-color: #7f4ca5;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #572975;
}

a {
  color: #572975;
  text-decoration: none;
}

a:hover {
  color: #3d0b60;
}

.image-section img,
.container img {
  max-width: 100%;
  max-height: 250px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.link,
p {
  text-align: center;
  font-size: 0.9em;
  color: #333;
}