@charset "utf-8";
/* CSS Document */

/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Verdana:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  font-family: verdana, sans-serif;
}


body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: left;
}


.Outercontainer {
	max-width: 1000px;
	width: 100%;
    display: flex;
    align-items: center;
  	justify-content: center;
	min-width:700px !important;
}

.crew-container {
	position: relative;
	max-width: 9750px;
	width: 95%;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.crew-container header {
  font-size: 1.5rem;
  color: #333;
  font-weight: 800;
  text-align: center;
}

.crew-container .crewform {
  margin-top: 15px;
  font-size: 1.25rem;
}



.crewform .input-box {
  width: 100%;
  margin-top: 15px;
  vertical-align:bottom;
}
input[type=submit] {
  background-color: #C32126;
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  Font-weight:bolder;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

input[type=submit]:hover {
  background-color: #030039;
}

.input-box label {
  color: #333;
  Font-weight:bolder;
  font-size:14px;
  text-align: left;
}
.crewform :where(.input-box input, .select-box) {
  position: relative;
  height: 30px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 8px;
  background-color: #B6B2B224;
  
}

.crewform :where(.input-box textarea) {
  position: relative;
  height: 100px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
  background-color: #B6B2B224;
  
}
.crewform :where(.input-box .checkbox) {
  position: relative;
  height: 40px;
  outline: none;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 100 10px;
  background-color: #B6B2B224;
  
}

.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.crewform .column {
  display: flex;
  column-gap: 15px;
}
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
  background-color: #B6B2B224;
}
.crewform button {
	
  background-color: #C32126;
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  Font-weight:bolder;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;  
  height: 55px;
  width: 100%;
}

input[type=submit] {
  background-color: #C32126;
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  Font-weight:bolder;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

input[type=submit]:hover {
  background-color: #030039;
}

.crewform button:hover {
 	background-color: #030039;
}


.crewform .waiver-box {
  margin-top: 20px;
}
.waiver-box h3 {
  color: #030039;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
  
}
.crewform :where(.waiver-option, .waiver) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
  
}
.crewform .waiver {
  column-gap: 15px;
}
.crewform input {
  accent-color: rgb(195, 33, 38);
}
.crewform :where(.waiver input, .waiver label) {
  cursor: pointer;
}
.waiver label {
  color: #707070;
}

/* Increase radio button's size */
input[type='radio']{
    width: 20px;
    height: 20px;
}

/* Increase Checkbox size */
input[type='checkbox']{
    width: 20px;
    height: 20px;
}
/* Dotted navy border */
hr.navydashed {
  border-top: 1px dashed navy;
}


/*Responsive*/
@media screen and (max-width: 500px) {
  .crewform .column {
    flex-wrap: wrap;
  }
  .crewform :where(.prereg-option, .prereg) {
    row-gap: 15px;
  }
  
  .input-box label {
 /* display:none */

  color: #333;
  Font-weight:bolder;
  font-size:9px;
}

.Outercontainer {
	min-width:100px !important;

}
 
.crew-container {
	width: 100%;
	padding: 10px;
}


