/**
 * CSS for shortcode [dcauth-login]
 */
.dcauth-login .c-black {
	color: black;
}
.dcauth-login .c-white {
	color: white;
}
.dcauth-login header {
	background: #cc0033;
	height: 50px;
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 10px;
	align-items: center;
}
.dcauth-login header h3 {
	margin: 0;
	font-size: 28px;
	font-family: Arial, sans-serif;
	font-weight: 600;
}
.dcauth-login header .logo img {
	height: 50px;
	margin-left: 5px;
}
.dcauth-login form input {
	margin: 0;
}
.dcauth-login a.button,
.dcauth-login form button {
	padding: 1em 2em;
	line-height: 1em;
	border-radius: 2em;
	box-sizing: border-box;
	transition: all .3s ease;
}
.dcauth-login a.button-accent,
.dcauth-login form button.button-accent {
	background: #cc0033;
	color: white;
	border: 2px solid #cc0033;
}
.dcauth-login a.button-accent:hover,
.dcauth-login form button.button-accent:hover {
	background-color: #f51c52;
}
.dcauth-login form button {
	background: transparent;
	color: #2e3a44;
	border: 2px solid #2e3a44;
}
.dcauth-login form button:hover {
	background-color: #2e3a44;
	color: white;
}
.dcauth-login form button.button-center {
	display: block;
	margin: 1em auto;
}
.dcauth-login .action {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: space-between;
}
.dcauth-login footer {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	background: inherit;
}
