/* style_registration.css */

/* Стилі для форми реєстрації */
#registrationForm {
  background-color: #f4f4f4;
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#registrationForm h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

#registrationForm input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#registrationForm button {
  width: 100%;
  padding: 10px;
  background-color: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#registrationForm button:hover {
  background-color: #1976D2;
}

#registrationForm input:focus {
  outline: none;
  border-color: #2196F3;
}

#registrationForm input[required] {
  background-color: #fffbfb;
}

#registrationForm input[required]:focus {
  background-color: #eaf5ff;
}
