/* =============================================================== */
/* registration_form.css - Styles for the e-GdP registration form  */
/* =============================================================== */

/* Import the styles for the standard page */
@import url(/css/standard_page.css);

/* --------------------------------------------------------------- */

#registration_form {
  margin: 1.0em;
  display: block;
  text-align: center;
}

#registration_form h1 {
  padding: 0.5em 0 0.5em 0;
}

#registration_form p {
  margin: 0.5em 0 0.5em 0;
}

#registration_form strong {
  font-weight: bold;
}

#registration_form em {
  font-style: italic;
}

#registration_form .underlined {
  text-decoration: underline;
}

#registration_form table {
  text-align: left;
}

#registration_form td {
  vertical-align: top;
  padding: 2px 4px 0 0;
}

#registration_form form input {
  vertical-align: middle;
}

#registration_form .text_input {
  width: 250px;
  background: #EEE2A5; /* RGB: 238, 226, 165 */
}

#registration_form .button {
  padding: 2px;
  color: rgb(255, 255, 255);
  background-color: rgb(2, 71, 148);
}

#registration_form .err_msg {
  color: rgb(255, 0, 0); /* red */
}

#registration_form a {
  font-weight: bold;
  color: rgb(2, 71, 148);
  text-decoration: none;
}

#registration_form a:hover {
  text-decoration: underline;
}

/* =============================================================== */

