* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-size: 20px;
	font-family: Rubik;
   font-style: normal;
   font-weight: 400;

	display: grid;
	grid-template-columns: 650px 3px 1fr;

	background-color: white;

	margin-top: 50px;
}

.error {
	font-size: 15px;
	font-weight: 300;
	color: red;
	display:none;
}

.img {
	grid-row: 1 / 2;
	grid-column: 1 / 2;
	justify-self: center;
}

.vl {
	height: 600px;
	grid-column: 2 / 3;
	grid-row: 1 / 2;
 	border-left: 3px solid black;
 	align-self: center;
}

.container {
	grid-column: 3 / 4;
	grid-row: 1 / 2;

	justify-self: center;
	align-self: center;
}

.content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.title {

	grid-column: 1 / 2;
	grid-row: 1 / 2;

	max-height: 157px;

	width: 545px;

	color: black;

	display: flex;
	flex-direction: column;
	gap: 44px;
}

.big {
	font-weight: 700;
	font-size: 35px;
}

.text {
	font-weight: 400;
	font-size: 20px;
}

.subtitle {
	font-size: 25px;
}

.item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.name {
	grid-column: 1 / 2;
	grid-row: 2 / 3;

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 63px;
}

.firstName {
	grid-column: 1 / 2;
}

input {
	height: 44px;

	border-radius: 6px;
	border: none;

	padding: 5px;

	font-family: Rubik;
	font-weight: 500;
	font-size: 15px;

	text-decoration: none;
	outline: solid 2px rgba(185, 185, 185, 1);;
	transition: outline 0.1s ease-in-out;
}

input:focus {
	outline: solid 3.5px rgba(58, 108, 217, 0.5);
}

.lastName {
	grid-column: 2 / 3;
}

.email {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
}

.email {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
}

.password {
	grid-column: 1 / 2;
	grid-row: 4 / 5;
}

.cfmPassword {
	grid-column: 1 / 2;
	grid-row: 5 / 6;
}

.footer {
	grid-column: 1 / 2;
	grid-row: 6 / 7;
}



button {
	width: 545px;
	height: 60px;
	border: 0px;
	border-radius: 12px;
	background-image: linear-gradient(rgba(75, 145, 247, 1),rgba(54, 125, 246, 1));

	cursor: pointer;

	position: relative;
}

button:active {
	outline-color: rgba(58, 108, 217, 0.5);
	outline-style: solid;
	outline-width: 4.5px;
}

.btnText {
	font-family: Rubik;
	font-weight: 500;
	font-size: 20px;
	color: white;

	transition: all 0.2s;
}

.spinner .btnText {
	visibility: hidden;
  	opacity: 0;
}

.spinner::after {
	content: "";
	position: absolute;
	margin: auto;

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	width: 4.8px;
   height: 4.8px;
   border-radius: 4.8px;
   box-shadow: 12px 0px 0 0 rgba(250,250,250,0.2), 9.7px 7.1px 0 0 rgba(250,250,250,0.4), 3.7199999999999998px 11.4px 0 0 rgba(250,250,250,0.6), -3.7199999999999998px 11.4px 0 0 rgba(250,250,250,0.8), -9.7px 7.1px 0 0 #fafafa;
   animation: spin 1s infinite linear;
}

@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}

.link {
	color: #236BF6;
	font-weight: 300;

	text-align: center;

	cursor: pointer;

	text-decoration: none;
}



