@font-face {
    font-family: 'Galano Grotesque';
    src: url('./assets/fonts/GalanoGrotesque-Regular.woff2') format('woff2'),
        url('./assets/fonts/GalanoGrotesque-Regular.woff') format('woff'),
        url('./assets/fonts/GalanoGrotesque-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('./assets/fonts/GalanoGrotesque-SemiBold.woff2') format('woff2'),
        url('./assets/fonts/GalanoGrotesque-SemiBold.woff') format('woff'),
        url('./assets/fonts/GalanoGrotesque-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Galano Grotesque';
    src: url('./assets/fonts/GalanoGrotesque-Bold.woff2') format('woff2'),
        url('./assets/fonts/GalanoGrotesque-Bold.woff') format('woff'),
        url('./assets/fonts/GalanoGrotesque-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
	background-image: url('./assets/images/background-image.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0;
	padding: 0;
	height: 100vh;
	font-family: Galano Grotesque, sans-serif;
	font-weight: 400;
	background-attachment: fixed;
	align-items: center;
    display: flex;
}
form {
	background-color: transparent;
	max-width: 476px;
	width: 100%;
	box-sizing: border-box;
	padding-top: 80px;
	padding-bottom: 60px;
	display: flex;
	margin: auto;
	justify-content: center;
}
form *{
	box-sizing: border-box;
}

.form-fields-wrapper{
	border-radius: 15px;
	background: #F26D24;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	padding: 25px 40px;
}
.form-fields-wrapper .form-header{
	text-align: center;
	color: #fff;
}
.form-fields-wrapper .form-header .header-logo{
	display: block;
	width: 100%;
	max-width: 132px;
	margin: 0 auto;
}
.form-fields-wrapper .form-header .header-title{
	color: #FDE151;
	margin-bottom: 10px;
	margin-top: 34px;
	font-size: 33px;
	line-height: 38px;
}
.form-fields-wrapper .form-header .header-description{
	margin-top: 0px;
	font-size: 16px;
	line-height: 18px;
	max-width: 345px;
	margin: 0px auto 34px;
}
input[type="text"],input[type="email"], textarea {
	display: block;
	width: 100%;
	padding: 17px 30px 15px;
	margin-bottom: 18px;
	border-radius: 5px;
	border: 0px;
	font-size: 16px;
	resize: none;
	border-radius: 40px;
}


input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #DEDEDE;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #DEDEDE;
   opacity:  1;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #DEDEDE;
   opacity:  1;
}
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #DEDEDE;
}
input::-ms-input-placeholder { /* Microsoft Edge */
   color:    #DEDEDE;
}

input::placeholder { /* Most modern browsers support this now. */
   color:    #DEDEDE;
}

.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 12px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #fff;
}

.checkbox-container:hover input ~ .checkmark:after {
	content: "";
	position: absolute;
	display: block;
	transform: rotate(45deg);
	height: 8px;
	width: 4px;
	border-bottom: 3px solid #F26D24;
	border-right: 3px solid #F26D24;
	left: 2px;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
	transform: rotate(45deg);
	height: 8px;
	width: 4px;
	border-bottom: 3px solid #4CAF50;
	border-right: 3px solid #4CAF50;
	left: 2px;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .label-text {
  margin-left: 0px;
}

.submit-button{
	border: 0px;
	background-color: #fff;
	display: block;
	width: 100%;
	text-align: center;
	color: #FF5C00;
	text-transform: uppercase;
	padding: 19px 15px 19px; 
	margin-top: 34px;
	font-weight: 600;
	font-size: 21.9477px;
	line-height: 30px;
	border-radius: 98px;
	cursor: pointer;
	transition: all 400ms linear;
}
.submit-button:hover{
	background-color: #FF5C00;
	color: #fff;
}

@media screen and (max-width: 600px) {
	.form-fields-wrapper .form-header .header-logo {
	    max-width: 100px;
	}
	form {
	    max-width: 300px
	}
	.form-fields-wrapper {
	    padding: 20px 20px;
	}
	input[type="text"], input[type="email"], textarea {
	    padding: 14px 20px 12px;
	}
	.submit-button {
	    padding: 16px 15px 13px;
	    margin-top: 25px;
	    font-size: 18px;
	    line-height: 25px;
	}
	.form-fields-wrapper .form-header .header-title{
		margin-top: 20px;
		font-size: 24px;
		line-height: 38px
	}
	.form-fields-wrapper .form-header .header-description {
	    font-size: 14px;
	    line-height: 16px;
	}
}