body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url(bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.card {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #333;
  font-weight: 600;
}

.btn {
  background-color: #FF776B; /* Новый цвет */
  color: white;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #E6645A; /* Темнее при наведении */
}

a {
  color: #FF776B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

input:focus {
  border-color: #FF776B;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 119, 107, 0.5);
}