/**
 * Styles for the plugin's standalone authentication pages.
 *
 * These pages (the multi-IdP chooser and the SSO confirmation page) are
 * complete HTML documents emitted by the plugin outside the normal
 * wp_head()/wp_footer() template pipeline, so their styles cannot be
 * enqueued. This stylesheet is linked directly from those pages instead.
 *
 * @package OpenAccessSSO
 */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background: #f0f0f1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

/* Multi-IdP chooser page. */
.oasso-chooser {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .13);
	padding: 40px;
	max-width: 400px;
	width: 100%;
	text-align: center;
}

.oasso-chooser h1 {
	font-size: 20px;
	font-weight: 600;
	color: #1d2327;
	margin-bottom: 8px;
}

.oasso-chooser p {
	color: #50575e;
	font-size: 14px;
	margin-bottom: 24px;
}

.oasso-chooser-btn {
	display: block;
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background: #2271b1;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: background .15s;
}

.oasso-chooser-btn:hover {
	background: #135e96;
	color: #fff;
}

.oasso-chooser-btn:last-child {
	margin-bottom: 0;
}

/* SSO confirmation page. */
.oasso-confirm {
	background: #fff;
	padding: 32px 40px;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .13);
	max-width: 400px;
	text-align: center;
}

.oasso-confirm h1 {
	font-size: 20px;
	margin: 0 0 12px;
}

.oasso-confirm p {
	color: #50575e;
	font-size: 14px;
	margin-bottom: 24px;
}

.oasso-confirm-btn {
	display: inline-block;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background: #2271b1;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s;
}

.oasso-confirm-btn:hover {
	background: #135e96;
	color: #fff;
}
