.registration-form-container {
  max-width: 400px;
  margin: auto;
  /* margin: 50px auto; */
  /* padding: 20px; */
  /* background-color: #f9f9f9; */
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  /* font-family: Arial, sans-serif; */
}

/* Stylizacja formularza */
#custom-registration-form {
  display: flex;
  flex-direction: column;
}

/* Stylizacja etykiet */
#custom-registration-form label {
  margin-bottom: 4px;
  /* font-weight: bold; */
  font-size: 14px;
  color: #333;
}

/* Stylizacja pól wejściowych */
#custom-registration-form input[type="email"],
#custom-registration-form input[type="password"] {
  padding: 10px;
  margin: 0 0 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

/* Zmiana obramowania podczas aktywacji pola */
#custom-registration-form input[type="email"]:focus,
#custom-registration-form input[type="password"]:focus {
  border-color: #f24f4f;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

/* Stylizacja przycisku */
#custom-registration-form button[type="submit"] {
  margin-top: 10px;
  background-color: #f20000;
  color: #fff;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Zmiana tła przycisku przy najechaniu */
#custom-registration-form button[type="submit"]:hover {
  background-color: #f24f4f;
}

/* Stylizacja wiadomości zwrotnej */
#form-response {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

/* Wiadomość sukcesu */
#form-response p {
  margin: 0;
  padding: 10px;
  border-radius: 5px;
}

#form-response p[style*="green"] {
  background-color: #e6f7e6;
  color: #2b8c2b;
  border: 1px solid #c3e6c3;
}

#form-response p[style*="red"] {
  background-color: #fde6e6;
  color: #d9534f;
  border: 1px solid #f5c6cb;
}

/* Media queries dla urządzeń mobilnych */
@media (max-width: 480px) {
  .registration-form-container {
    padding: 15px;
  }

  #custom-registration-form input[type="email"],
  #custom-registration-form input[type="password"] {
    font-size: 13px;
    padding: 8px;
  }

  #custom-registration-form button[type="submit"] {
    font-size: 14px;
  }
}
