@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body{
  background: lightblue;
  padding-bottom: 56px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #6f8fdc;
  color: #111;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links button {
  padding: 8px 16px;
  border: none;
  background: #e5e5e5;
  border-radius: 6px;
  cursor: pointer;
}

.nav-links button.active {
  background: #5a74d6;
  color: white;
}

.nav-links button:hover {
  opacity: 0.9;
}

/* Container styling */
.container {
  padding: 30px;
}

.title{
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
}

.gtStarted{
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.userInput{
  padding-left: 10px;
}

#crAccountButton{
  display: block;
  width: 140px;
  height: 40px;
  margin: 40px auto 0;
  text-align: center;
}

.loginText{
  text-align: center;
  padding-right: 5px;
}

#logInButton{
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 16px;
  margin-top: 8px;
}

#logInButton:hover{
  opacity: 0.9;
  text-decoration: none;
}


.JEMLogin{
  text-align: center;
  padding: 30px;
}

.JEMSignup{
  text-align: center;
  padding: 30px;
}

.forgotPassword{
  text-align: center;
  padding: 30px 20px;
}

.forgotPassword h1 {
  margin-bottom: 20px;
}

#cpButton{
  display: block;
  margin: 20px auto 0;
}

.secQuestions{
  padding-top: 30px;
}

.recoverAccount2 {
  text-align: center;
  padding: 30px 20px;
}

.recoverAccount2 h1 {
  margin-bottom: 20px;
  font-size: 32px;
}

#recoverAccountButton {
  display: block;
  margin: 20px auto 0;
}

#contact{
  text-align: center;
  padding: 30px 20px;
}

#contact h1 {
  margin-bottom: 20px;
}

.messageInput{
  display: block;
  width: 100%;
  max-width: 500px;
  height: 200px;
  box-sizing: border-box;
  padding: 12px;
  border: none;
  border-radius: 16px;
  background: rgba(0,0,0,0.2);
  color: white;
  resize: vertical;
  font-family: inherit;
  font-size: 14px;
  margin: 0 auto 16px;
}

.messageInput::placeholder {
  color: rgba(255,255,255,0.7);
}

.emailInput{
  display: block;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  margin: 0 auto 16px;
}

fieldset {
  background: rgba(100, 150, 200, 0.4);
  border-radius: 25px;
  padding: 28px 28px 20px;
  border: none;
  margin: 20px auto;
  max-width: 500px;
  backdrop-filter: blur(6px);
}

fieldset legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

fieldset label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="date"] {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,0.2);
  color: white;
  width: 100%;
  margin-bottom: 10px;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: rgba(255,255,255,0.7);
}

button[type="submit"],
input[type="submit"],
input[type="button"],
.crAccountButton {
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: #5a74d6;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

button[type="submit"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.crAccountButton:hover {
  opacity: 0.9;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  background: #6f8fdc;
  z-index: 10;
}

.site-footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer a[href*="contact/"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  font-size: 20px;
}

.site-footer a:hover {
  text-decoration: underline;
  opacity: 0.9;
}