.auth-wrap {
		min-height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 30px 15px;
	}

	.auth-card {
		width: 100%;
		max-width: 460px;
		border: 1px solid #e6e9ee;
		border-radius: 12px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
		background: #fff;
	}

	.auth-card .panel-heading {
		background: transparent;
		border-bottom: 1px solid #edf0f4;
		padding: 18px 20px;
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
	}

	.auth-title {
		margin: 0;
		font-size: 18px;
		font-weight: 600;
	}

	.auth-card .panel-body {
		padding: 18px 20px 20px;
	}

	.auth-avatar {
		display: block;
		margin: 10px auto 18px;
		width: 140px;
		height: 140px;
		border-radius: 50%;
		object-fit: cover;
		border: 4px solid #fff;
		box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
	}

	/* Modern-ish inputs */
	.form-control {
		height: 42px;
		border-radius: 10px;
		box-shadow: none;
		border-color: #d7dde6;
	}

	.form-control:focus {
		border-color: #8fbf5f;
		box-shadow: 0 0 0 3px rgba(143, 191, 95, .18);
	}

	/* Input group unify */
	.input-group-addon {
		border-color: #d7dde6;
		background: #f6f8fb;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}

	.input-group .form-control {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	/* Buttons */
	.btn-success {
		border-radius: 10px;
		height: 42px;
		font-weight: 600;
	}

	.btn-default {
		border-radius: 10px;
		height: 42px;
		line-height: 28px;
	}

	.link-muted {
		color: #6b7785;
		text-decoration: none;
	}

	.link-muted:hover {
		color: #2c3e50;
		text-decoration: underline;
	}

	/* Tabs: keep functionality but hide nav */
	.nav-tabs {
		display: none;
	}

	.tab-content {
		margin-top: 0;
	}

	/* Small helper spacing */
	.mt12 {
		margin-top: 12px;
	}

	.mt16 {
		margin-top: 16px;
	}