input[type=text]{
  width: 100%;
  padding: 15px 20px;
  margin: 0px 0px;
  display: inline-block;
  border: none;
  color: rgb(2, 20, 31);
  background-color:rgba(18, 104, 157, 0.08);
  border-radius: 0px;
  box-sizing: border-box;
  text-align:left;
  font-size: 1rem;
}
::placeholder { /* Firefox, Chrome, Opera */ 
  color: rgba(10, 62, 95, 0.5);
} 

:-ms-input-placeholder { /* Internet Explorer 10-11 */ 
  color: rgba(10, 62, 95, 0.5);
} 

::-ms-input-placeholder { /* Microsoft Edge */ 
  color: rgba(10, 62, 95, 0.5);
} 
.custom-form{
  width: 60%;
}

.custom-form p{
  padding-top:0;
}
button{
  background-color: rgba(10, 62, 95, 100);
  border: none;
  color:rgba(255, 255, 255, 0.5);
  padding: 10px 25px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  width: 40%;
}
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark-blue);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
 display:none;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--light-blue-008);
  border-radius: 0%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: var(--dark-blue-50);
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: var(--dark-blue);
}

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

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 0%;
	background: white;
}
