﻿html, body {
	height: 100%;
}

body {
	font-family: "Arial", Helvetica, sans-serif;
	background: linear-gradient(180deg, var(--page-gray-50) 0%, var(--page-gray-0) 30%, var(--page-gray-25) 100%);
}

.bg-glow {
	position: fixed;
	inset: -20vh -20vw -10vh -20vw; /* bleed off screen so edges aren’t visible */
	pointer-events: none;
	z-index: -2;
	background: radial-gradient(60vh 60vh at 75% 18%, rgba(255, 202, 230, 0.55), transparent 60%), /* magenta glow */
	radial-gradient(100vh 60vh at 15% 75%, rgba(173, 215, 255, 0.60), transparent 62%), /* cyan/blue glow */
	radial-gradient(100vh 100vh at 35% 85%, rgba(255, 202, 230, 0.40), transparent 40%), /* magenta glow */
	radial-gradient(70vh 60vh at 80% 70%, rgba(140, 178, 255, 0.45), transparent 65%); /* blue glow */
	filter: blur(8px); /* makes it dreamy */
	transform: translateZ(0); /* promotes to its own layer for smoother blur */
}

.ec-logo {
	height: 40px;
	padding-bottom: 15px;
}

.banner {
	display: grid;
	grid-template-columns: 55% 45%;
	height: 50px;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 10px;
	align-items: center;
	border-bottom: 1px solid #ccc;
}

.side-by-side {
	display: grid;
	grid-template-columns: 60% 40%;
	height: calc(100vdh - 60px);
	min-width: 880px;
}

.left {
	padding: 10px;
	margin: auto;
}

.right {
	margin: 50px 50px 10px 10px;
	padding: 20px;
	border-left: 1px solid #ccc;
	height: 100%;
}

/* Wizard Start */
.wizard {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 700px;
}

.step {
	border: 1px solid #ddd;
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
	background: #fff;
}

.step-header {
	width: 100%;
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 14px 16px;
	border: none;
	background: transparent;
	cursor:default;
}

.step .bullet {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	border: 2px solid #bbb;
	color: #999;
}

.step .title {
	font-weight: 700;
	color: #999;
}

.step-body {
	padding: 14px 16px 18px 16px;
	border-top: 1px solid #eee;
}

.step.active .bullet {
	border-color: #111;
	color: #111;
}

.step.active .title {
	color: #111;
}

.step.completed {
	opacity: 0.80; /* or use filter below instead */
	filter: grayscale(1);
	cursor: not-allowed;
}

	.step.completed * {
		pointer-events: none; /* blocks mouse/touch interaction */
		border-color: #ddd;
		cursor: not-allowed !important;
		color:#888;
	}

.step-body a {
	display: block;
	width: 150px;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
}

.login-form {
	display: flex;
	flex-flow: column;
}

	.login-form input {
		font-weight: unset;
		border: 1px solid #111;
	}

.next-btn {
	margin-top: 8px;
	padding: 10px 16px;
	border-radius: 1rem;
	border: 1px solid #111;
	background: #ccc;
	width: 150px;
	color: black;
}

.cancel-btn {
	margin-top: 12px;
	padding: 10px 16px;
	border-radius: 1rem;
	border: 1px solid #111;
	background: #555;
	color: white;
	cursor: pointer;
	text-decoration: none;
}

button.btn-exclude[type="submit"] {
	background: none;
	border: 0;
	padding: 0;
	width: auto;
	color: #0d6efd;
	cursor: pointer;
}

.auth-method {
	display: block;
	padding: 10px 15px;
	margin: 8px auto;
	background-color: #f9f9f9;
	border: 1px solid #111;
	border-radius: 8px;
	text-align: left;
	font-size: 16px;
	text-decoration: none;
	color: black;
	transition: background-color 0.2s;
	min-width: 350px;
	cursor: pointer;
}

	.next-btn:hover,
	.auth-method:hover,
	.cancel-btn:hover {
		background-color: #5983ac;
		color: white;
		border-color: #5983ac;
	}
		
/* Wizard End */

.form-group label {
	display: inline;
	padding-right: 20px;
}
.form-group p {
	display:inline;
	padding:5px;
}

.form-control {
	width: 450px;
	display: inline;
	}
	.form-control select:hover {
		background-color: #5983ac;
	}

#password {
	width: 300px;
}

#passcode {
	width: 350px;
	text-align: center;
}

#recoveryCode {
	width: 350px;
	text-align: center;
	cursor: copy;
}

.checkbox {
	display:inline;
}

.login-form {
    display: flex;
    flex-flow: column;
}

    .login-form input {
        font-weight: unset;
        border: 1px solid black;
    }

.auth-container {
	max-width: 450px;
	margin: auto;
	padding: 4px;
	text-align: center;
}

.phone-container {
	max-width: 450px;
	text-align: center;
}

.password-toggle {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: hsla(0,0%,50%,0.9);
	z-index: 5;
}

	.password-toggle:hover {
		color: #5983ac;
	}
