/* This css file is for login.html*/

/* ============login form========== */
form {
  /* Center the form on the page */
  margin: 20px auto;
  width: 340px;
  /* Form outline */
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 1em;
  display: block
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

form li+li {
  margin-top: .5em;
}

label {
  /* Uniform size & alignment */
  display: inline-block;
  width: 90px;
  text-align: center;
}

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: 200px;
  box-sizing: border-box;
  /* Match form field borders */
  border: 1px solid black;
}

textarea {
  /* Align multiline text fields with their labels */
  vertical-align: top;
  /* Provide space to type some text */
  height: 20em;
}

.button {
  /* Align buttons with the text fields */
  padding-left: 127.5px;
  text-align: center;
}

button {
  /* This extra margin represent roughly the same space as the space
  between the labels and their text fields */
  /* margin-left: 0.4em; */
  font-size: large;
}

/* ========================= text box above form ========================= */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.4;
}

section {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
}

p {
  margin-left: 10px;
  line-height: 1.6;
}

.intro {
  margin-top: 20px;
}

/* ========================= invalid email popup ========================= */

.popup {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.popup-content {
  background-color: white;
  margin: 10% auto;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
  padding: 20px;
  border: 1px solid #888888;
  width: 30%;
  font-weight: bolder;
}
.popup-content button {
  display: block;
  padding: 5px 5px;
  margin-top: 10px;
  margin-left: 172.5px;
}
.show {
  display: block;
}

h1 {
  color: orange;
}

/* ========================= nav bar ========================= */

/* make sure that the bav bar is present when we load the page */
#navBar { 
	display: inline-block; 
}

/* =============== Login help button ===================== */
#helpModal {
  display: none;
  justify-content: center;
  /* margin-left: 10px; */
  align-items: center;
}

.loginCenter {
  display: flex;
  align-items: center;
 justify-content: center;
}

