<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Growth - Gallery Login / Registration
/*--------------------------------------------*/
.gallery-login {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-frame div[class|="frame"],
.gallery-frame .ct-logo {
	display: none;
}

/* Gallery Login - Frame */
.gallery-frame {
	width: 600px;
	height: 600px;
	background: url("../png/gallery-bg.png") no-repeat;
	background-size: contain;
	padding: 45px; /* width * 0.076 */
	position: relative;
	display: flex;
	justify-content: center;
}

/* Gallery Login - Content */
.gallery-frame .wrap {
	width: 100%;
	height: 100%;
	padding: 30px;
	padding-top: 48px;
	letter-spacing: normal;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.gallery-frame .wrap p {
	font-size: 20px;
	font-weight: bold;
	color: #1f81b9;
	text-align: center;
	margin-bottom: 15px;
}

.gallery-frame .wrap &gt; div {
	width: 100%;
}

/* Gallery Login - Button */
.gallery-frame .wrap .btn {
	width: 80%;
	font-size: 16px;
	font-weight: 500;
	background-color: #1f81b9;
	color: #FFF;
	text-align: center;
	padding: 8px 16px;
	border-radius: 8px;
	border: 0;
	transition: all .3s ease-in-out;
  
	display: flex;
	align-items: center;
	justify-content: center;

	margin: 0 auto;
  
	cursor: pointer;
  
	-webkit-appearance: none;
}

.gallery-frame .wrap .btn--gradient {
	background: linear-gradient(270deg, #2A8ACF 0%, #41A0DD 100%)
}

.gallery-frame .wrap .btn--gradient:hover {
	text-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}

.gallery-frame .wrap .btn--round {
	border-radius: 36px;
}

.gallery-frame .wrap .btn--outline {
	border: 1px solid #1f81b9;
	background-color: #FFF;
	color: #1f81b9;
}

.gallery-frame .wrap .btn--outline:hover {
	border-color: #3899CF;
	color: #3899CF;
}

.gallery-frame .wrap .register {
	margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
	/* Growth - Gallery Login / Registration
	/*--------------------------------------------*/
	.gallery-frame { width: 580px; height: 580px; }
}

@media only screen and (max-width: 600px) {
	/* Growth - Gallery Login / Registration
	/*--------------------------------------------*/
	.gallery-frame { width: 100vw; height: 100vw; }
}

@media only screen and (max-width: 480px) {
    /* Growth - Gallery Login / Registration
	/*--------------------------------------------*/
	.gallery-frame { padding: 32px; }
	.gallery-frame .wrap p { font-size: 18px; line-height: 1.4; margin-bottom: 10px; }
}

@media only screen and (max-width: 370px) {
	/* Growth - Gallery Login / Registration
	/*--------------------------------------------*/
	.gallery-frame { padding: 24px; }
	.gallery-frame .wrap { padding: 15px; padding-top: 30px; }
	.gallery-frame .wrap p { font-size: 15px; line-height: 1.3; }
	.gallery-frame .wrap .register { margin-bottom: 20px; }
	.gallery-frame .wrap .register br { display: none; }
	.gallery-frame .wrap .btn { font-size: 14px; }
}

@media only screen and (max-width: 300px) {
	/* Growth - Gallery Login / Registration
	/*--------------------------------------------*/
	.gallery-frame { width: 100%; height: auto; padding: 20px; }
	.gallery-frame .wrap { background: #FFF; padding-top: 40px; }
	.gallery-frame .ct-logo { position: absolute; height: 16px; top: 36px; display: block; }
	.gallery-frame div[class|="frame"] { position: absolute; display: block; }
	
	.gallery-frame .frame-top {
		top: 0;
		left: 0;
		width: calc(100% + 1px);
		height: 0px;
		border-left: 24px solid transparent;
		border-right: 24px solid transparent;
		border-top: 24px solid #FDD000;
	}
	
	.gallery-frame .frame-left {
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		border-top: 24px solid transparent;
		border-bottom: 24px solid transparent;
		border-left: 24px solid #00A0E9;
	}
	
	.gallery-frame .frame-bottom {
		top: calc(100% - 24px);
		left: 0;
		width: calc(100% + 1px);
		height: 0px;
		border-left: 24px solid transparent;
		border-right: 24px solid transparent;
		border-bottom: 24px solid #00A0E9;
	}
	
	.gallery-frame .frame-right {
		top: 0;
		left: calc(100% - 24px);;
		width: 0px;
		height: 100%;
		border-top: 24px solid transparent;
		border-bottom: 24px solid transparent;
		border-right: 24px solid #FDD000;
	}
}</pre></body></html>