/* Modern register form styles */

#account-content {
	max-width: 420px;
	margin: 0em auto 0 auto;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 6px;
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
	padding: 1.5em 2em 2em 2em;
	color: #eaeaea;
	text-align: center;
}

.main-content {
	background-color: rgb(221 221 221 / 53%);

}

#account-content {


	h2 {
		color: white;
		text-align: center;
		margin-bottom: 1.5rem;

		font-size: 1.8rem;
	}

	form.stacked-modern {
		display: flex;
		flex-direction: column;

		color: #eaeaea;
	}

	.form-group {
		display: flex;
		flex-direction: column;
		position: relative;
		margin-bottom: 1rem;
	}

	.form-group label {
		display: block;
		color: white;
		margin-bottom: 0.5rem;
		font-weight: 500;
	}


	.form-group input {
		width: 100%;
		padding: 0.75rem;
		background: rgba(0, 0, 0, 0.5);
		border: 1px solid rgba(255, 255, 255, 0.3);
		border-radius: 3px;
		color: white;
		font-size: 1rem;
		box-sizing: border-box;
		transition: border-color 0.2s, background 0.2s;
	}

	.form-group input:focus {
		border-color: #4fa3ff;
		outline: none;
		background: #23272a;
	}

	.form-hint {
		font-size: 0.92em;
		color: #b0b0b0;
		margin-bottom: 0.5em;
		font-style: italic;
	}

	.btn-primary {
		background: #ffffff;
		color: #181a1b;
		border: none;
		border-radius: 4px;
		padding: 0.8em 1.5em;
		font-size: 1.1em;
		font-weight: 600;
		cursor: pointer;
		margin-top: 1rem;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
		transition: background 0.2s, box-shadow 0.2s, color 0.2s;
	}

	.btn-primary:hover,
	.btn-primary:focus {

		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	}

	.form-message {
		margin: 0.5em 0 0.5em 0;
		padding: 0.7em 1em;
		border-radius: 6px;
		background: #23272a;
		color: #eaeaea;
		font-size: 1em;
		display: block;
		border: 1.5px solid #333;
	}

	.form-message.hidden {
		display: none;
	}

	.form-message.success {
		background: #1a7a1a;
		color: #e6fbe6;
		border: 1.5px solid #1a7a1a;
	}

	.form-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
		margin-top: 1.5rem;
		padding-top: 1rem;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.form-links a {

		text-decoration: none;
		transition: color 0.2s;
	}

	.form-links a:hover,
	.form-links a:focus {
		color: #fff;
		text-decoration: underline;
	}
}