:root {
	--background: #EDEEF1;
	--header-background: #FCFCFD;
	--text: black;
	--primary: #605DFF;
	--primary-soft: #dadafa;
	--primary-dark: #4a00e0;
	--secondary: #464646;
	--login-text: #1F2346;
	--white: #FFFFFF;
	--black: #272c39;
	--bg: #F8F9FD;
	--border: #F1F1F1;
	--error: #FE2E2E;
	--error-soft: #ffd6d6;
	--table-background: #FCFCFD;
	--gray: #d4dadf;
	--gray-dark: #c7cdd2;
	--odd-row: #F6F9FF;
	--th-background: #F4F5FC;
	--gray-background: #F4F5FC;
	--gray-mid: #e9ecef;
	--gray-soft: #f4f6f8;
	--gray-text: #949494;
	--heart: #FE2E2E;
	--star: #FFFF00;
}

body {
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-img {
	width: 50%;
	height: 100%;
	object-fit: cover;
	border-radius: 25px;
	padding: 10px;
}

@media screen and (max-width: 768px) {
	
	.hero-img {
		display: none;
	}
}

/* register */
.register-container {
	width: 100vw;
	max-width: 100vw;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.register-form {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
}

.register-form .top {
	position: relative;
	width: 100%;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	row-gap: 10px;
}

.register-form .top h1 {
	color: var(--text);
	font-size: 1.5rem;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.register-form .top .logo img {
  height: 100%;
  max-height: 40px;
  margin: 0;
  filter: opacity(1) drop-shadow(0 0 0 #000000);
}

.register-form .top .logo .text {
	font-size: 2em;
	color: black;
}

.register-form .top button {
	position: absolute;
	right: 0;
	height: 100%;
	cursor: pointer;
	border-radius: 0;
}

.register-form .top .btn-close {
	right: auto;
	left: 0;
}

.register-form .middle {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	row-gap: 10px;
	padding: 3rem 2rem;
}

.register-form img.profile {
  max-width: 70px;
  border-radius: 50%;
}

@media screen and (min-width: 769px) {
	
	.register-container {
		width: 32rem;
		height: auto;
		min-height: 100%;
		margin: 0 auto;
		background: none;
	}
}

.register-form h1 {
	margin: 0;
	font-weight: 500;
	color: var(--text);
}

.register-form .text-field .input__wrapper {
	position: relative;
}

.register-form .socials-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.register-form .socials-row>a {
	position: relative;
	border-radius: 0.5rem;
	width: 100%;
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 1.1rem;
	color: var(--secondary);
	padding: 15px;
	border: 1px solid var(--border);
	background: var(--header-background);
	transition: all .3s ease;
}

.register-form .socials-row>a.business {
	background: #33a5ec;
	color: var(--white);
}

.register-form .socials-row>a.email {
	background: var(--primary-soft);
}

.register-form .socials-row>a:hover {
	border: 1px solid var(--primary);
}

.register-form .socials-row img {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 1.5rem;
	height: 1.5rem;
}

.register-form .register-welcome-row {
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
	margin-top: 3rem;
}

.register-form .lines {
	margin-top: 1rem;
	margin-bottom: 1rem;
	display: flex;
	gap: 1rem;
	font-weight: bold;
	align-items: center;
}

.register-form .line {
	height: 2px;
	flex: 1;
	background: var(--border);
}

.register-form__button {
	background: var(--primary);
	color: white;
	white-space: nowrap;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
	line-height: 3.125rem;
	outline: none;
	font-size: 1.125rem;
	letter-spacing: .025rem;
	text-decoration: none;
	cursor: pointer;
	font-weight: 800;
	min-height: 3.125rem;
	width: 100%;
	border-radius: 0.5rem;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.register-form__button:hover {
	background: var(--primary-dark);
}

.register-form__actions {
	display: flex;
	flex-direction: row;
	align-self: center;
	width: 100%;
	justify-content: space-between;
	color: var(--secondary);
	gap: 1rem;
	margin-top: 0.5rem;
}

.register-form__actions a,
.register-form__row a {
	color: var(--secondary);
	font-weight: 600;
	text-decoration: none;
}

.register-form__actions a:hover,
.register-form__row a:hover {
	text-decoration: underline;
}

.register-form__row {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.register-container .modal,
.register-container .modal__cover-layer {
	width: 100%;
	max-width: 32rem;
}