/* /frontend/css/login.css - 20260707 - 17-55 */
/* A-FUCKING-DOCS: LAYOUT COMPACTION FOR NATIVE CREDENTIAL ENTRY VECTORS AND INLINE NOTICES.
	Collapses excessive padding and margin bounds around native form wrappers to pull profile instructions closer. */
html,
body {
	height: 100%;
}
body {
	display: flex;
	flex-direction: column;
	margin: 0;
}
.login-main-container {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	gap: 15px;
}
#dynamic-login-content {
	width: 100%;
	max-width: 900px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#dynamic-login-content a {
	text-decoration: none;
	color: inherit;
}
.login-top-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	padding: 10px;
	flex-wrap: wrap;
	flex-shrink: 0;
	width: 100%;
}
#dynamic-login-content > div[style*="padding-bottom"] {
	display: none !important;
}
#dynamic-login-content .title_auth {
	color: #ffffff !important;
	font-size: 48px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-top: 15px;
	margin-bottom: 10px;
	padding-bottom: 0 !important;
}
#dynamic-login-content > .title_auth:first-of-type {
	order: 1;
}
.container_logo_auth {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 5px;
	order: 2;
}
#dynamic-login-content > p:not(.title_auth) {
	order: 3;
	margin: 0 0 20px 0 !important;
}
.native-login-container {
	order: 4;
	width: 100%;
}
.native-login-container .form-wrapper {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
.native-login-container p:not(.title_auth) {
	margin-top: 5px !important;
	color: #dddddd !important;
}
.social_auth_link {
	display: block;
	transition: transform 0.2s ease;
	text-align: center;
}
.social_auth_link:hover {
	transform: scale(1.05);
}
.title_logo {
	color: #ffff00 !important;
	margin: 0 0 10px 0;
	font-weight: bold;
	font-size: 24px;
}
.google_image,
.facebook_image,
.microsoft_image,
.line_image {
	width: 167px;
	height: 167px;
	border-radius: 15px;
	border: 1px solid #666;
}
#dynamic-login-content hr {
	border: none;
	border-top: 1px solid #444;
	margin: 25px auto;
	width: 100%;
	max-width: 600px;
}