HEX
Server: Apache
System: Linux b5.s-host.com.ua 4.18.0-305.10.2.el7.x86_64 #1 SMP Fri Jul 23 21:00:55 UTC 2021 x86_64
User: unelbhzm (1470)
PHP: 8.0.18
Disabled: NONE
Upload Files
File: /sites/nuofama.com/wp-content/plugins/blocksy-companion-pro/static/sass/account-lazy.scss
@import './common-frontend';

// account modal
#account-modal {
	background-color: rgba(18, 21, 25, 0.6);
}

.ct-account-form {
	width: 100%;
	margin: auto;
	font-size: 14px;
	color: var(--color);
	background-color: #fff;
	--linkInitialColor: var(--color);

	@include media-breakpoint-down(xs) {
		max-width: 88vw;
	}

	@include media-breakpoint-up(sm) {
		max-width: 480px;
	}

	border-radius: 3px;
	box-shadow: var(--box-shadow, 0px 0px 70px rgba(0, 0, 0, 0.35));
	--content-spacing: 1em;
}

// account content
.ct-account-form {
	> ul {
		display: flex;

		li {
			width: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			position: relative;
			height: 60px;
			font-size: 12px;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.03em;
			cursor: pointer;
			border-bottom: 1px solid rgba(0, 0, 0, 0.1);
			transition: opacity 0.1s ease, background 0.1s ease;

			&.active {
				border-bottom-color: transparent;
			}

			&:not(.active) {
				opacity: 0.5;
				background: rgba(0, 0, 0, 0.04);

				&:hover {
					opacity: 0.8;
				}
			}

			&:first-child {
				border-right: 1px solid rgba(0, 0, 0, 0.1);
			}
		}
	}

	.ct-account-panel {
		@include media-breakpoint-down(xs) {
			padding: 40px 30px;
		}

		@include media-breakpoint-up(sm) {
			padding: 60px 70px;
		}

		&:not(.active) {
			display: none;
		}
	}

	form > * {
		--content-spacing: 20px;

		&:last-of-type {
			margin-bottom: 0;
		}
	}

	label {
		display: block;
		font-size: 14px;
	}

	.ct-button {
		width: 100%;

		svg {
			margin-inline-start: 10px;
		}

		&:not(.ct-loading) svg {
			display: none;
		}
	}

	.col-2 {
		display: flex;
		justify-content: space-between;
	}

	#reg_passmail,
	.ct-back-to-login {
		text-align: center;
	}

	.ct-back-to-login {
		display: block;
		margin-top: 20px;
	}

	.login-remember {
		span {
			display: flex;
		}

		input {
			--top: 3px;
		}
	}

	// form notifications
	[class*='ct-form-notification'] {
		margin-bottom: 25px;
		border-radius: 3px;
		padding: 10px 15px;
		background: rgba(0, 0, 0, 0.04);

		a {
			color: inherit;

			&:not(:hover) {
				text-decoration: underline;
			}
		}
	}

	.ct-form-notification-error {
		color: rgba(255, 255, 255, 0.95);
		background: rgba(218, 0, 28, 0.7);
	}

	// shake animation
	@media (prefers-reduced-motion: no-preference) {
		&.ct-error {
			animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
			transform: translate3d(0, 0, 0);
			backface-visibility: hidden;
			perspective: 1000px;
		}
	}
}

// captcha plugins
.ct-account-form {
	div.g-recaptcha,
	.anr_captcha_field {
		margin: var(--content-spacing) 0 !important;
	}
}

// wordfence integration
#wfls-prompt-overlay-blocksy {
	margin-bottom: var(--content-spacing);

	#wfls-prompt-wrapper input + label {
		margin-top: var(--content-spacing);
	}

	~ *:not(.login-submit) {
		display: none;
	}
}