﻿body {
  background: #ffffff;
  font-family: Open Sans, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
}

h1, h2, h3 {
	font-family: Montserrat, serif;
}

* {
  box-sizing: border-box;
}

.login-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border: 2px solid #101935;
	background-color: #628395;
	width: 50%;
	margin: auto;
	color: #101935;
	border-radius: 10px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 600;
  text-decoration: underline;
}

p {
	font-size: 20px;
	text-align: center;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-size: 24px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 22px;
  border-radius: 6px;
  border: 1px solid #101935;
  transition: all 0.3s ease-in;
  font-size: 20px;
}

input:focus {
	transform: scale(1.02);
}

button {
  width: 100%;
  padding: 10px;
  background: #D9E2E7;
  color: #101935;
  border: none;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  border: 1px solid #628395;
  margin: 20px 0;
  transition: all 0.3s ease-in;
}

button:hover {
  background: #101935;
  color: #f7f7f7;
}

a {
	text-decoration: none;
	display: inline-block;
}

.error {
  color: red;
  text-align: center;
  margin-top: 10px;
}

.alert {
	font-size: 24px;
	font-weight: 600;
}

.alert.success {
  color: green;
  font-weight: bold;
  margin-bottom: 15px;
}


#fixture-intake-form {
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
	padding: 15px;
	margin: 20px auto;
	width: 70%;
	border: 2px solid #101935;
	background-color: #628395;
}

#fixture-intake-form h2 {
	font-size: 30px;
	font-family: Montserrat, sans-serif;
	color: #101935;
	text-align: center;
}

.linebreak {
  display: block;
  content: "";
  min-height: 3px;
  width: 100%;
  margin: 30px auto;
  background-color: #101935;
  border: none;
}

.datetime-display {
  font-size: 36px;
  font-weight: bold;
  color: #101935;
  margin-bottom: 10px;
}

.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: 10px;
}

.header img, 
.dashboardheader img {
	width: 100%;
	height: 150px;
	object-fit: contain;
}

.welcomeuser {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 3%;
}

.welcomeuser h1 {
	font-size: 50px;
}

.dashboardheader {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #d9e2e7;
	padding: 10px;
	border-bottom: 2px solid #101935;
}

.dashboardwelcome {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.dashboardwelcome h1 {
	font-size: 36px;
	font-weight: 600;
	text-decoration: none;
	color: #101935;
	font-family: Montserrat, sans-serif;
}

.optionbuttons {
	display: flex;
	flex-direction: column;
	width: 90%;
	margin: 50px auto 50px;
	justify-content: center;
	align-items: center;
	gap: 60px;
}

.intake, 
.search,
.logout,
.compliance,
.start,
.saveandexit {
	padding: 15px;
	font-size: 30px;
	font-weight: 600;
	font-family: Montserrat, sans-serif;
	color: white;
	width: 60%;
	margin: 10px auto;
	text-align: center;
	border-radius: 8px;
}

.intake {
	background-color: green;
}

.search {
	background-color: blue;
}

.logout {
	background-color: red;
}

.compliance {
	background-color: blue;
}

.start {
	background-color: green;
}

.saveandexit {
	background-color: red;
	width: 100% !important;
}

.confirmation-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

.confirmation-data {
  background-color: #628395;
  border: 2px solid #101935;
  border-radius: 10px;
  padding: 25px;
  width: 80%;
  margin: 30px auto;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}

.confirmation-container h2 {
	font-size: 36px;
	font-weight: 600;
	text-decoration: underline;
	text-align: center;
}

.confirmation-container p {
	font-size: 24px;
	color: #101935;
	text-align: center;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}

.confirm-label {
  font-weight: 600;
  color: #101935;
  text-transform: capitalize;
}

.confirm-value {
  color: #101935;
}

.confirm-photo {
  text-align: center;
  margin-top: 20px;
}

.confirm-photo img {
  max-width: 400px;
  border: 2px solid #101935;
  border-radius: 6px;
}

.optionbuttons a {
	display: block;
	width: 60%;
	font-size: 20px;
}

.movetowizard {
	display: flex;
	width: 60%;
}

.submitintake {
	display: block;
	width: 100%;
	background-color: green;
	padding: 10px;
	font-size: 20px;
}

.logout {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.wizardlogout {
	display: block;
	padding: 10px;
	color: white;
	background-color: red;
	width: 800px;
	text-align: center;
	margin: 10px auto;
}

.wizardstep {
	display: flex;
	flex-direction: column;
  background-color: #628395;
  padding: 30px;
  border: 2px solid #101935;
  border-radius: 12px;
  margin: 30px auto;
  width: 95%;
  color: #101935;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.wizardstep h2 {
	font-size: 30px;
	text-align: center;
}

.question-block {
	display: flex;
	flex-direction: column;
  margin-bottom: 25px;
}

.question-block label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.radio-options, 
.checkbox-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.radio-options label {
  color: #101935;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-options input[type=radio] {
  accent-color: #101935;
}

.component-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  color: #101935;
}

.component-form input,
.component-form select {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #101935;
}

.component-form button {
  padding: 10px 14px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.component-list .component-row {
  background: #628395;
  padding: 10px 15px;
  border: 1px solid #101935;
  border-radius: 6px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result {
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.chooseproject {
	display: flex;
	flex-direction: column; 
	width: 60%;
	margin: 30px auto;
	background-color: #628395;
	padding: 40px 20px;
}

.chooseproject h1 {
	font-size: 30px;
	font-weight: 600;
	text-decoration: underline;
}

select {
	font-size: 20px;
	padding: 15px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
}

.followup {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}

@media (max-width: 768px) {

p {
	font-size: 18px;
}

label {
	font-size: 18px;
}  

.login-container {
	width: 90%;
}

#fixture-intake-form {
	width: 90%;
}

.header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.welcomeuser h1 {
	font-size: 30px;
}

.dashboardwelcome h1 {
	font-size: 30px;
}

.datetime-display {
	font-size: 30px;
}

.intake, 
.search,
.logout {
	padding: 10px;
	font-size: 26px;
	width: 90%;
	text-align: center;
}

.confirmation-data {
  background-color: #628395;
  border: 2px solid #101935;
  border-radius: 10px;
  padding: 15px;
  width: 95%;
}

.radio-options, 
.checkbox-options {
	display: flex;
	flex-direction: column;
}

.question-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.chooseproject {
	width: 90%;
}

}