/* Additional styles for login-register page */
.auth-container {
	min-height: 100vh;
	background-color: #0a1628;
	display: flex;
	flex-direction: column;
}

.auth-header {
	padding: 1rem 0;
	background-color: #0a1628;
}

.auth-nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.auth-nav .nav-logo h2 {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
}

.sign-in-link {
	color: #DAA520;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.sign-in-link:hover {
	color: #B8860B;
}

.auth-main {
	flex: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 2rem 20px;
}

.auth-content {
	max-width: 1200px;
	width: 100%;
	text-align: center;
}

.main-title {
	font-size: 4rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 3rem;
	line-height: 1.6;
}

.auth-buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.btn-role {
	background: #DAA520;
	color: #0a1628;
	border: none;
	padding: 1rem 3rem;
	border-radius: 25px;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 200px;
}

.btn-role:hover {
	background: #B8860B;
}

.btn-role.secondary {
	background: transparent;
	color: #DAA520;
	border: 2px solid #DAA520;
}

.btn-role.secondary:hover {
	background: #DAA520;
	color: #0a1628;
}

.user-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.user-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	/* padding: 2rem; */
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.user-card:hover {
	transform: translateY(-5px);

	border-color: rgba(218, 165, 32, 0.3);
}

.player-card {
	position: relative;
	background: linear-gradient(135deg, #1e3a5f, #0a1628);
	border-radius: 15px;
	padding: 1.5rem;
	color: #fff;
	text-align: center;
	height: 100%;
}

.player-card a {
	text-decoration: none;
}

.player-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
	margin-left: 0;
	border: 3px solid #DAA520;
}

.player-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #fff;
}

.player-position {
	color: #DAA520;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 1rem;
}

.scout-card,
.team-card {
	text-align: center;
}

.card-icon {
	width: 80px;
	height: 80px;
	background: #DAA520;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #0a1628;
}

.card-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.card-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
}

.card-description {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.auth-main {
		padding: 0.5rem 20px;
	}

	.main-title {
		font-size: 2.2rem;
		margin-bottom: 0.8rem;
	}

	.subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.auth-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.btn-role {
		min-width: 280px;
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}

	.user-cards {
		grid-template-columns: 1fr 1fr;
		gap: 0.8rem;
		padding: 0;
		max-width: 100%;
	}

	.user-card {
		padding: 0;
		border-radius: 15px;
	}

	/* Player card adjustments */
	.player-card {
		padding: 0.8rem;
	}

	.player-photo {
		width: 80px;
		height: 80px;
		margin-bottom: 0.5rem;
		border: 3px solid #DAA520;
	}

	.player-name {
		font-size: 1.1rem;
		margin-bottom: 0.1rem;
		font-weight: 600;
	}

	.player-position {
		font-size: 0.8rem;
		font-weight: 700;
		letter-spacing: 1px;
		color: #DAA520;
	}

	/* Scout and Team cards adjustments */
	.card-icon {
		width: 50px;
		height: 50px;
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}

	.card-title {
		font-size: 1rem;
		margin-bottom: 0.1rem;
		font-weight: 600;
	}

	.card-subtitle {
		font-size: 0.65rem;
		margin-bottom: 0.05rem;
	}

	.card-description {
		font-size: 0.65rem;
	}
}

@media (max-width: 480px) {
	.auth-content {
		padding: 0 10px;
	}

	.main-title {
		font-size: 1.8rem;
		line-height: 1.2;
	}

	.subtitle {
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
	}

	.btn-role {
		min-width: 260px;
		padding: 0.7rem 1.5rem;
		font-size: 0.95rem;
	}

	.user-cards {
		gap: 0.4rem;
	}

	.user-card {
		padding: 0;
	}

	.player-card {
		/* padding: 0.5rem; */
		height: 100%;
	}

	.player-photo {
		width: 70px;
		height: 70px;
		margin-bottom: 0.4rem;
	}

	.player-name {
		font-size: 1rem;
		margin-bottom: 0.05rem;
	}

	.player-position {
		font-size: 0.75rem;
		letter-spacing: 0.5px;
	}

	.card-icon {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
		margin-bottom: 0.4rem;
	}

	.card-title {
		font-size: 0.9rem;
		margin-bottom: 0.05rem;
		text-decoration: none;
	}

	.card-subtitle {
		font-size: 0.8rem;
		margin-bottom: 0.02rem;
		margin-top: 0.3rem;
	}

	.card-description {
		font-size: 0.8rem;
	}
}

/* Password visibility toggle styles */
.password-input-container {
	position: relative;
}

.password-input-container input {
	padding-right: 40px !important;
	/* Make space for the toggle button */
}

.password-toggle {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #6b7280;
	font-size: 1.1rem;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	transition: color 0.3s ease;
	z-index: 10;
}

.password-toggle:hover {
	color: #ffd700;
}

.password-toggle:focus {
	outline: none;
	color: #ffd700;
}

/* Guardian email confirmation */
.guardian-confirmation-success {
	text-align: center;
	padding: 30px;
}

.guardian-confirmation-status {
	color: #28a745;
	font-size: 18px;
	margin-bottom: 20px;
}

.guardian-confirmation-actions {
	margin-top: 30px;
}

.register-link-centered {
	text-align: center;
	margin-top: 20px;
}