:root {
	--color-orange: #ff590c;
}

* {
	box-sizing: border-box;
	font-family: sans-serif;
	font-family: 'Lato', sans-serif;
	color: #b3b3b3;	
	font-weight: normal;
}

h1 {
	font-size: 2em
}

.form-group input:not(:placeholder-shown),
.form-group select {
 	color: #18ce50 !important;
}

.none {
	display: none;
}

.btn {
	position: relative;
	border-radius: 5px;
	padding: 10px 20px;
	font-size: 1.2em;
	cursor: pointer;
	text-align: center;
}

.btn-warning {
	background-color: var(--color-orange);
	border: 1px solid var(--color-orange);
	border-radius: 5px;
	padding: 10px 20px;
	color: #fff !important;
}

.btn-outline-warning {
	background-color: transparent;
	border: 1px solid var(--color-orange);
	border-radius: 5px;
	padding: 10px 20px;
	color: var(--color-orange);
}

.btn-pulse {
	box-shadow: 0 0 0 0 var(--color-orange) .5;
  	-webkit-animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 7px #ff590ca8;
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 0 #ff590ca8;
  }
}

.dashed {
	text-decoration: line-through
}

.form-group {
	width: 100%;
	margin-bottom: 30px
}

.form-group label {
	display: inline-block;
}

.form-group input,
.form-group input:focus,
.form-group input:hover,
.form-group input:active,
.form-group select,
.form-group select:focus,
.form-group select:hover,
.form-group select:active {
	width: 100%;
	padding: 10px;
	color: #666;
	border: none;
	border-color: transparent;
	border-bottom: 1px solid #666;
	margin-top: 5px;
	background: transparent;
	position: relative;
}

body {
	margin: 0;
	background-color: #080713;
	/*background-image: linear-gradient(#210e85, #040d37);*/
	height: 100vh;
}

main, header {
	margin: 0 10%;
}

header { 
	text-align: center;
}

header img {
	margin-top: 30px;
	max-width: 120px; 
}

section h1 {
	text-align: center;
	font-weight: bold;
}

section form {
	max-width: 350px;
	margin: 0 auto;
	margin-top: 80px;
	margin-bottom: 80px;
}

section form h3,
section form h4,
section form h5 {
	text-align: center;
}

section form h2 span.through {
	text-decoration: line-through;
}

section form h2 span.green,
section form h4 span,
section form a {
	color: #18ce50
}

section form .btn {
	width: 100%;
	margin-top: 60px
}

section form .block {
	padding: 15px;
    border:1px solid #3c3c3c;
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
    margin-bottom: 30px
}

section form .block.active {
    background: #3c3c3c;
    height: auto;
}

section form .accept {
	text-align: center;
	font-size: 0.9em;
}

section form.step2 {
	text-align: center;
}

section form ol {
	text-align: left;
}

/*Register Bonus*/
section.bonus {
	display: grid;
	grid-template-rows: all;
	text-align: center;
	margin-top: -60px;
}

section.bonus > div > div {
	border-bottom: 1px solid #21202d;
}

section.bonus > div > div span{
	text-decoration: line-through;
}

/*Register Stacks*/
section.stacks {
	display: grid;
	grid-template-rows: all;
	text-align: center;
}

section.stacks .stack-box .img {
	width: 100px;
	height: 100px;
	background: url(../../img/html5.png) center center no-repeat #3d3d3d;
	border-radius: 50%;
	margin: 0 auto;
	margin-top: 30px
}

section.stacks .stack-box .img#stack-css3 {
	background: url(../../img/css3.png) center center no-repeat #3d3d3d;
}

section.stacks .stack-box .img#stack-js {
	background: url(../../img/js.png) center center no-repeat #3d3d3d;
}

section.stacks .stack-box .img#stack-github {
	background: url(../../img/github.png) center center no-repeat #3d3d3d;
}

section.stacks .stack-box .img#stack-plus {
	background: url(../../img/plus.png) center center no-repeat #3d3d3d;
}

section.stacks .stack-box .info-courses{
	text-align: center;
	margin: 0 20px;
}

/*Register Questions*/
section.questions {
	display: grid;
	grid-template-rows: all;
	text-align: center;
}

section.questions h2{
	width: 100%;
	box-sizing: border-box;
	padding: 7px;
	background: #333;
	text-transform: inherit;
}

/*Register Warranty*/
section.warranty {

	display: grid;
	grid-template-rows: all;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 150px;
}

section.warranty img {
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 30px
}

section.warranty .btn-signature{
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 30px
}

span.show-password {
	position: absolute;
    z-index: 1;
    margin-left: -35px;
    margin-top: 11px; 
	cursor: pointer;
}

span.show-password img{
	width: 25px;
}

.terms {
	margin-top: 50px
}

article {
	text-align: justify;
}

b {
	font-weight: bold;
}

/*Desktop*/
@media only screen and (min-width: 720px) {

	/*Register Bônus*/
	section.bonus > div {
		display: grid;
		grid-template-columns: 1fr;
		margin-bottom: 35px;
	}

	section.bonus > div > div {
		margin: 15px 5px;
		border-bottom: 1px solid #21202d;
	}

	section.bonus > div > div:hover {
		background: #21202d
	}

	section.bonus > div > div h3{
		text-align: center;
		margin: 5px;
	}

	section.bonus > div > div h5{
		margin: 10px;
	}

	/*Register Stacks*/
	section.stacks > div {
		display: grid;
		grid-template-columns: 1fr 4fr;
		text-align: justify;
		margin-bottom: 35px;
	}

	section.stacks .stack-box .img{
		margin-top:20px;
		float: left;
	}

	section.stacks .stack-box .info-courses{
		text-align: justify;
		padding-top: 1px;
	}

	/*Register Questions*/
	section.questions h2,
	section.questions h4{
		text-align: justify;
		padding: 15px;
	}

	/*Register Warranty*/
	section.warranty {
		display: grid;
		grid-template-columns: 1fr 1fr;
		margin-top: 30px;
	}

	section.warranty h1 {
		grid-column: 1/3
	}

	section.warranty .warranty-text {
		text-align: justify;
		margin-top: 30px;
		font-size: 1.3em;
	}

	section.warranty button {
		grid-column: 2/3;
		margin: unset;
		margin-top: 30px
	}

}