@charset "utf-8";
/* CSS Document */

input[type=text], input[type=email], select, textarea {
  width: 33%; 
  padding: 12px; /* Some padding */ 
  border-style: solid;
border-color:#E6E9E9;
  background-color: #E6E9E9;
  border-radius: 0px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: none; /* Allow the user to vertically resize the textarea (not horizontally) */
	color:#141414;
}
.sndbtn{
  background-color: white;
  border: solid 0.5px;
  color: #275B57;
  padding: 10px 10px;
  width: 150px;
  font-size: 25px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
	cursor: pointer;
}
.applybtn{
  background-color: white;
  border: solid 0.5px;
  color: #275B57;
  padding: 10px 10px;
 width:auto;
  font-size: 25px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
	cursor: pointer;
}

.applybtn:hover {
	color:white;
	background-color:#275B57;
}

.sndbtn:hover {
	color:white;
	background-color:#275B57;
}

textarea {
	  color:#141414;
	 font-family: poppins,sans-serif;
}

::-webkit-input-placeholder { /* Edge */
  color:#141414;
	 font-family: poppins,sans-serif;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:#141414;
	 font-family: poppins,sans-serif;
}

::placeholder {
  color:#141414;
	 font-family: poppins,sans-serif;
}

#applyNowPopup {
	width:100%;
	max-width:1000px;
	margin: 0 auto;
	position: relative;
	background-color: white;
	padding: 50px;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.colThird {
	display: flex;
	flex-basis: 33.333%;
	align-items: center;
	justify-content: center;
	
}

.alignCenter {
	text-align: center;
	width:100%;
	margin:0 auto;
}


.green {
	color:#275B57;
}

/* Customize the label (the container) */
.checkLabel {
  display: block;
	color:#275B57;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
	font-size: 19px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkLabel input {
 position: absolute;
    opacity: 0;
    left: 0;
    cursor: pointer;
    top: 4px;
    width: auto;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 4px;
  left: 0px;
  height: 20px;
  width: 20px;
  background-color: transparent;
    border: 2px solid #275B57;
}


/* On mouse-over, add a grey background color */
.checkLabel:hover input ~ .checkmark {
  background-color: transparent;
	border:2px solid #275B57;
}

/* When the checkbox is checked, add a blue background */
.checkLabel input:checked ~ .checkmark {
  background-color:  transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkLabel input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkLabel .checkmark:after {
        left: 5px;
    top: 0px;
    width: 3px;
    height: 9px;
  border: solid #275B57;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.colHalf {
	display: flex;
	flex-basis: 50%;
	align-items: center;
}

#applyNowForm {
	width:100%;
	max-width:750px;
	margin: 0 auto;
}

#applyNowForm input {
	width:100%;
	margin: 5px;
}

#applyNowForm textarea {
	width:100%;
	margin: 5px;
}