form {
  /* Center the form on the page */
  margin: 0 auto;
  width: 100%; 
  /* Form outline */
   padding: 1em;
  /* border: 1px solid #ccc; */
  border-radius: 1em; 
background: transparent;
margin: auto;
text-align: center;


  /* testing  */
  /* padding: 10px 10px 10px 10px;
  width: 90%;
  margin: auto;
text-align: center; */
}

/* ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

form li + li {
  margin-top: 1em;
} */



input,
textarea {
  /* To make sure that all text fields have the same font settings
     By default, textareas have a monospace font */
  font: 1em sans-serif;

  /* Uniform text field size */
  width: 50%;
  box-sizing: border-box;

  /* Match form field borders */
  border: 1px solid grey;

  /* spacing */
  
  
}

input:focus,
textarea:focus {
  /* Additional highlight for focused elements */
  border-color: transparent;
}

textarea {
  /* Align multiline text fields with their labels */
  vertical-align: top;

  /* Provide space to type some text */
  height: 12em;
}

.button {
  /* Align buttons with the text fields */
  padding-left: 90px; /* same size as the label elements */
}

button {
  /* This extra margin represent roughly the same space as the space
     between the labels and their text fields */
  margin-left: 0.5em;
}

label.text-light {

width: 100%;
padding-right: 40%;

}

/* services checkbox */

label.text-checkbox {

  width: 30%;
 text-decoration: white;
/* display: flexbox; */
text-align: left;
padding: 0px 0px 0px 0px;
margin-right: 90px;




}

hr.text-danger {
  border-top: 2px dotted red;
  margin-left: 28%;
  margin-right: 28%;
}


label {
  /* Uniform size & alignment */
  /* display: inline-block; */
  /* display: flex;
  width: 120px; */
  /* align-items: center; */
}

.submit {

color: red;
background-color: transparent;
border-color: red;



}

.submit:hover {

background-color: red;
color:white;

}