:root {
  --navy: #13172c;
  --blue: #6473c0;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
header {
  background-color: white;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body {
  background-color: var(--navy);
  min-height: 100vh;
}
.content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#headerLogoContainer {
  height: fit-content;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
}
#headerLogoContainer h1 {
  color: black;
}
#headerLogo {
  height: 90px;
  width: auto;
  max-width: 65%;
  cursor: pointer;
  object-fit: contain;
}
nav {
  display: flex;
  flex-direction: row;
  row-gap: 15px;
}
.navItem {
  color: black;
  text-decoration: none;
}
.button {
  width: fit-content;
  height: fit-content;
  margin: auto;

  padding: 8px 20px;
  background-color: var(--navy);
  color: white;
  border-radius: 5px;
}
/* Pages */
.pageTitle {
  font-size: 24pt;
  text-align: center;

  color: white;
  padding: 15px;
  padding-top: 45px;
}
/* Form */
#formContainer {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 60%;
  align-items: center;
}
#chilifestCheckIn {
  width: 90%;
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.formInput {
  display: flex;
  justify-content: center;
  column-gap: 15px;
}
.formInput input {
  width: 300px;
  height: 40px;
  padding: 0 8px;
}
#formButtons {
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-items: center;

  row-gap: 35px;
  padding-top: 25px;
}
#formButtons input {
  width: 250px;
  height: 100px;
  border-radius: 15px;
  border: none;
  color: white;
  font-size: 18pt;
  font-weight: 700;
}
#clockInButton {
  background-color: green;
}
#clockOutButton {
  background-color: red;
}

/* Help Page */
#servicesContainer {
  border: solid white 2px;
  padding: 10px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  margin: 25px auto;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.serviceCard {
  border: solid 2px white;
  border-radius: 5px;
  padding: 15px;

  display: grid;
  grid-template-columns: 1fr 50px;
  grid-template-rows: auto fit-content;
  row-gap: 15px;
}
.serviceCardTitle {
  color: white;
  grid-column: 1;
  grid-row: 1;
  font-size: 18pt;
}
.cardIcon {
  color: white;
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  justify-self: center;
  font-size: 16pt;
  rotate: -90deg;
  transition-duration: 0.2s;
}
.serviceCardContent {
  display: none;
  flex-direction: column;
  grid-column: 1 / 3;
  grid-row: 2;
}

#admin_login {
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  text-decoration: none;
  font-size: 10pt;
}
#indexButtons {
  display: flex;
  flex-direction: column;
  height: 400px;
  align-items: center;
  justify-content: center;

  row-gap: 1em;
}
#indexButtons a {
  width: 220px;
  padding: 0.5em 0;
  background-color: var(--blue);
  text-align: center;
  color: white;
  text-decoration: none;
}
