/*Css style for registration form */

/*Generl style for the boddy section*/
body {
  font-family: Arial, sans-serif;
  background-color: #f4f7fc;
  margin: 0;
  padding: 0;
}

/*Style for the container setion*/
.container {
  width: 100%;
  max-width: 400px;
  margin: 100px auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*Style for the dark mode feature of the container*/
.container.dark_mode {
  background-color: #ffffffc7;
}

/*Style for heading 2 in container div*/
.container h2 {
  text-align: center;
  font-size: 24px;
  color: #333;
}

/*Style for form div*/
.form-group {
  margin-bottom: 20px;
}

/*Style for input whos type text, email and password*/
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/*Style for the submit button*/
button {
  width: 100%;
  padding: 10px;
  background-color: #e5533c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
}

/*Style for the hover effect of the submit button*/
button:hover {
  background-color: #ff6b6b;
}

/*Style for paragraph in container */
.container p {
  text-align: center;
  font-size: 14px;
}

/*Style for the ancher in container */
.container a {
  color: #4caf50;
  text-decoration: none;
}

/*Style for hover effect of ancher in the container*/
.container a:hover {
  text-decoration: underline;
}
