@import 'src/Components/GlobalStyles/colors';
@import 'src/Components/GlobalStyles/mixins';
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.subscriptionPlan {
	display: inline-block;
	color: var(--primary-color);
	margin-left: 5px;
	font-size: inherit;
}

.backButton {
	color: var(--bs-body-color);
	text-decoration: none;
	font-size: 14.4px;

	&:hover {
		color: var(--primary-color);
	}
}

.signUpContainer {
	font-family: Montserrat, sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: center;
	justify-items: center;
	align-items: center;
	color: $font-grey;

	.headline {
		color: $dark;
		font-size: 1.5em;

		span {
			color: var(--primary-color);
		}
	}

	h2 {
		font-weight: 600;
		font-size: 24px;
		line-height: 28px;
		color: $dark;
		display: none;
	}

	.linkToSignIn {
		display: block;
		margin-top: 16px;
		text-align: center;

		a {
			color: $hyperlink-color;
			margin: 10px 0 0 5px;
			text-decoration: none;
			font-weight: 700;
		}
	}

	.signUpButton {
		@include Button;

		width: 460px;
		padding: 15px 0;
		background-color: var(--primary-color);
		margin-top: 30px;

		a {
			color: $font-white !important;
		}
	}
}

.cognitoLink {
	@include Button;

	width: 460px;
	padding: 15px 0;
	background-color: var(--primary-color);
	//margin-top: 30px;

	a {
		color: $font-white !important;
	}
}

.transactionCompleteMessage {
	@include positionAbsoluteCenter;

	background-color: #305bde;
	color: white;
	box-shadow: 0 3px 13px 0 $dropShadow;
	padding: 20px 50px;
	border-radius: 15px;
	text-align: center;
	z-index: 99999;

	&__paragraph {
		margin: 0;
	}
}

// .formContainer {
// 	position: absolute;
// 	top: 50%;
// 	left: 50%;
// 	transform: translate(-50%, -50%);
// }

.paypalWwrapper {
	max-width: 750px;
	margin: 0 auto;
}

.signupLink {
	color: $font-grey-darker;
	text-decoration: none;
}

.footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 35px;
	border-top: 1px solid $dropShadow;
	padding: 5px 10px;
	font-size: 12px;
	color: $font-light-grey;

	a {
		color: $font-grey-darker;
		text-decoration: none;

		&:hover {
			color: $font-light-grey;
		}
	}

	svg {
		width: 70px !important;
		height: 15px !important;
	}
}
