.login-options-container {
	margin: 40px 0;
}

.login-button {
	display: block;
	position: relative;
	background: linear-gradient(135deg, #f5f7fa 0%, #e5e9f2 100%);
	border-radius: 12px;
	padding: 25px 20px;
	text-align: center;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

.button-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.login-button:hover .hover-overlay {
	opacity: 1;
}

.icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.icon-wrapper i {
	font-size: 36px;
	transition: all 0.3s ease;
}

.login-type {
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.login-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	opacity: 0.8;
}

/* Parent button styling */
.parent-login {
	background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%);
	border-left: 4px solid #4e73df;
}

.parent-login .icon-wrapper {
	background-color: rgba(78, 115, 223, 0.1);
	color: #4e73df;
}

.parent-login:hover .icon-wrapper {
	background-color: #4e73df;
	color: white;
}

.parent-login:hover .login-type {
	color: #4e73df;
}

/* Student button styling */
.student-login {
	background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%);
	border-left: 4px solid #1cc88a;
}

.student-login .icon-wrapper {
	background-color: rgba(28, 200, 138, 0.1);
	color: #1cc88a;
}

.student-login:hover .icon-wrapper {
	background-color: #1cc88a;
	color: white;
}

.student-login:hover .login-type {
	color: #1cc88a;
}

/* Admin button styling */
.admin-login {
	background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%);
	border-left: 4px solid #f6c23e;
}

.admin-login .icon-wrapper {
	background-color: rgba(246, 194, 62, 0.1);
	color: #f6c23e;
}

.admin-login:hover .icon-wrapper {
	background-color: #f6c23e;
	color: white;
}

.admin-login:hover .login-type {
	color: #f6c23e;
}

/* Media queries for responsiveness */
@media (max-width: 767px) {
	.login-button {
		padding: 20px 15px;
	}
	
	.icon-wrapper {
		width: 60px;
		height: 60px;
	}
	
	.icon-wrapper i {
		font-size: 28px;
	}
	
	.login-type {
		font-size: 18px;
	}
}