.social-login-wrapper {
	margin-top: 0;
}

.social-login-divider {
	display: flex;
	align-items: center;
	margin-top: 20px;
	gap: 12px;
}

.social-login-divider::before,
.social-login-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, transparent, #ddd 20%, #ddd 80%, transparent);
}

.social-login-divider-text {
	color: #6c757d;
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
	text-transform: lowercase;
}

.social-login-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.social-login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 24px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	color: #1f2937;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.social-login-btn:hover {
	background: #f8f9fa;
	border-color: #adb5bd;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
	color: #1f2937;
	text-decoration: none;
}

.social-login-btn:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.social-login-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.social-login-text {
	flex: 1;
	text-align: left;
}

.social-login-btn-google:hover {
	background: #f8f9fa;
	border-color: #4285F4;
}

.social-login-btn-facebook:hover {
	background: #f8f9fa;
	border-color: #1877F2;
}

.social-login-btn-discord:hover {
	background: #f8f9fa;
	border-color: #5865F2;
}

@media (min-width: 576px) {
	.social-login-buttons {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.social-login-btn {
		flex: 1;
		min-width: 180px;
	}
	
	.social-login-text {
		text-align: center;
	}
}
