
/* Resetter
-----------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	line-height: 1;
	list-style-type: none;
	box-sizing: border-box;
	background-repeat: no-repeat;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	transition: all 0.5s ease;
  	font-size: 13px;
  	font-weight: 500;
}


/* Html and Body
-----------------------------------------------*/


html, body {
}

body {
	font-family: 'Montserrat', sans-serif;
	color: #414761;
	background-color: #F4F4F7;
}

h1 {
	font-size: 25px;
	margin-bottom: 20px;
	line-height: 130%;
}

h2 {
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 130%;
}

p {
	line-height: 130%;
	margin: 20px 0;
}

b {
	line-height: 130%;
}

a {
	color: #F30F30;
	line-height: inherit;
}

a:hover {
	opacity: 0.7;
}



.logo {
	margin: 20px 0;
}


.container {
	max-width: 500px;
	margin: 30px auto;
	padding-left: 20px;
	padding-right: 20px;
}



/* Buttons
-----------------------------------------------*/

.button {
	display: inline-block;
	background-color: #555;
	color: #FFF;
	font-weight: 600;
	border-radius: 4px;
	padding: 10px;
	font-size: inherit;
	border: 0;
}

.button--colour-orange {
	background-color: #F5A623;
}

.button--colour-red {
	background-color: #F30F30;
}

.button--size-large {
	font-size: 18px;
	padding: 15px;
}



/* Form
-----------------------------------------------*/

.formfield {
	margin: 15px 0;
}

.formfield__label {
	display: block;
	margin: 5px 0;
}

.formfield__label--size-large {
	font-size: 20px;
	margin-bottom: 30px;
}

.formfield__input {
	width: 100%;
	max-width: 700px;
	border: 1px solid #CCC;
	font-size: 15px;
	padding: 10px;
	border-radius: 4px;
	outline: 0;
}

.formfield__input--size-half {
	width: 50%;
	max-width: 200px;
}

.formfield__input--error {
	border: 1px solid #F30F30;
}


.form__submit {
	margin-top: 20px;
}

.form__field__error {
	color: #F30F30;
	margin-top: 3px;
}

.form__error {
	background-color: #FCEACC;
	padding: 15px;
	margin: 0 0 20px 0;
	max-width: 600px;
	line-height: 140%;
}





/* Rewards
-----------------------------------------------*/

.rewards {
	background-color: #000039;
	padding: 20px;
}

.rewards__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin-bottom: 40px;
}


.rewards_keyline {
	position: absolute;
	top: 0;
	left: 0;
	border-left: 1px solid #FFF;
	border-top: 1px solid #FFF;
	height: 50px;
	width: 50px;
}

.rewards .rewards__item:nth-child(even) .rewards_keyline {
	border: 0;
	right: 0;
	left: auto;
	border-right: 1px solid #FFF;
	border-top: 1px solid #FFF;
}


.rewards__item__body {
	text-align: center;
	color: #FFF;

	max-width: 60%;
}

.rewards__item__body__brand {
	font-size: 16px;
	margin-bottom: 10px;
}


.rewards__item__body__name {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 20px;
	line-height: 140%;
}

.rewards__item__body__points {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	border: 10px solid #D4B88F;
	padding: 5px 15px;
	font-weight: 600;
	line-height: 130%;
	border-radius: 100px;
	font-size: 30px;
	width: 175px;
	height: 175px;
	margin: 0 auto;
}


.rewards__item__body__redeem {
	display: block;
	margin-top: 20px;
	font-size: 18px;
	color: #FFF;
	background-color: #F60226;
	padding: 15px;
	font-weight: bold;
	border-radius: 50px;
}
